CloudErrorBody Constructors

Definition

Overloads

CloudErrorBody()

Initializes a new instance of the CloudErrorBody class.

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

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, IList<CloudErrorBody>, String, String)

Initializes a new instance of the CloudErrorBody class.

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

Parameters

code
String

An identifier for the error. Codes are invariant and are intended to be consumed programmatically.

details
IList<CloudErrorBody>

A list of additional details about the error.

message
String

A message describing the error, intended to be suitable for display in a user interface.

target
String

The target of the particular error. For example, the name of the property in error.

Applies to