共用方式為


CloudErrorBody Constructors

Definition

Overloads

CloudErrorBody()

Initializes a new instance of the CloudErrorBody class.

CloudErrorBody(String, String, String, IList<CloudErrorBody>)

Initializes a new instance of the CloudErrorBody class.

CloudErrorBody()

Initializes a new instance of the CloudErrorBody class.

public CloudErrorBody ();
Public Sub New ()

Applies to

CloudErrorBody(String, String, String, IList<CloudErrorBody>)

Initializes a new instance of the CloudErrorBody class.

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

Parameters

code
String

The error code.

message
String

The error message.

target
String

The target of the particular error.

details
IList<CloudErrorBody>

A list of additional details about the error.

Applies to