Share via


ODataInnerError Constructors

Definition

Overloads

ODataInnerError()

Initializes a new instance of the ODataInnerError class with default values.

ODataInnerError(IDictionary<String,ODataValue>)

Initializes a new instance of the ODataInnerError class with a dictionary of property names and corresponding ODataValues.

ODataInnerError(Exception)

Initializes a new instance of the ODataInnerError class with exception object.

ODataInnerError()

Initializes a new instance of the ODataInnerError class with default values.

public ODataInnerError ();
Public Sub New ()

Applies to

ODataInnerError(IDictionary<String,ODataValue>)

Initializes a new instance of the ODataInnerError class with a dictionary of property names and corresponding ODataValues.

public ODataInnerError (System.Collections.Generic.IDictionary<string,Microsoft.OData.ODataValue> properties);
new Microsoft.OData.ODataInnerError : System.Collections.Generic.IDictionary<string, Microsoft.OData.ODataValue> -> Microsoft.OData.ODataInnerError
Public Sub New (properties As IDictionary(Of String, ODataValue))

Parameters

properties
IDictionary<String,ODataValue>

Dictionary of string keys with ODataValue as value. Key string indicates the property name where as the value of the property is encapsulated in ODataValue.

Applies to

ODataInnerError(Exception)

Initializes a new instance of the ODataInnerError class with exception object.

public ODataInnerError (Exception exception);
new Microsoft.OData.ODataInnerError : Exception -> Microsoft.OData.ODataInnerError
Public Sub New (exception As Exception)

Parameters

exception
Exception

The Exception used to create the inner error.

Applies to