你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

ODataError Constructors

Definition

Overloads

ODataError()

Initializes a new instance of the ODataError class.

ODataError(String, String, IList<ODataError>)

Initializes a new instance of the ODataError class.

ODataError()

Initializes a new instance of the ODataError class.

public ODataError ();
Public Sub New ()

Applies to

ODataError(String, String, IList<ODataError>)

Initializes a new instance of the ODataError class.

public ODataError (string code = default, string message = default, System.Collections.Generic.IList<Microsoft.Azure.Management.DataMigration.Models.ODataError> details = default);
new Microsoft.Azure.Management.DataMigration.Models.ODataError : string * string * System.Collections.Generic.IList<Microsoft.Azure.Management.DataMigration.Models.ODataError> -> Microsoft.Azure.Management.DataMigration.Models.ODataError
Public Sub New (Optional code As String = Nothing, Optional message As String = Nothing, Optional details As IList(Of ODataError) = Nothing)

Parameters

code
String

The machine-readable description of the error, such as 'InvalidRequest' or 'InternalServerError'

message
String

The human-readable description of the error

details
IList<ODataError>

Inner errors that caused this error

Applies to