RemoteRpcException.ErrorData Property

Definition

Gets or sets the error.data value in the error response, if one was provided.

public object? ErrorData { get; protected set; }
member this.ErrorData : obj with get, set
Public Property ErrorData As Object

Property Value

Remarks

Depending on the IJsonRpcMessageFormatter used, the value of this property, if any, may be a Newtonsoft.Json.Linq.JToken or a deserialized object. If a deserialized object, the type of this object is determined by GetErrorDetailsDataType(JsonRpcError). The default implementation of this method produces a CommonErrorData object.

Applies to