Table of Contents

Class ConfigError

Namespace
Azure.Iot.Operations.Services.AssetAndDeviceRegistry.AdrBaseService
Assembly
Azure.Iot.Operations.Services.dll
public class ConfigError
Inheritance
ConfigError
Inherited Members

Properties

Code

Error code for classification of errors (ex: '400', '404', '500', etc.).

[JsonPropertyName("code")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? Code { get; set; }

Property Value

string

Details

Array of error details that describe the status of each error.

[JsonPropertyName("details")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public List<DetailsSchemaElementSchema>? Details { get; set; }

Property Value

List<DetailsSchemaElementSchema>

Message

Human readable helpful error message to provide additional context for error (ex: “capability Id ''foo'' does not exist”).

[JsonPropertyName("message")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? Message { get; set; }

Property Value

string