Class ErrorResponse
The error response type
Inheritance
System.Object
ErrorResponse
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Microsoft.Graph.CoreSDK.Exceptions.Error
Assembly: Microsoft.Graph.CoreSDK.dll
Syntax
[JsonObject(MemberSerialization = MemberSerialization.OptIn)]
public class ErrorResponse
Properties
View SourceAdditionalData
Gets or sets the additional data.
Declaration
[JsonExtensionData(ReadData = true)]
public IDictionary<string, object> AdditionalData { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IDictionary<System.String, System.Object> | The additional data. |
Error
Gets or sets the error.
Declaration
[JsonProperty(PropertyName = "error")]
public Error Error { get; set; }
Property Value
Type | Description |
---|---|
Error | The error. |