Share via


ErrorError Constructors

Definition

Overloads

ErrorError()

Initializes a new instance of the ErrorError class.

ErrorError(String, String, String, IList<ErrorDetails>)

Initializes a new instance of the ErrorError class.

ErrorError()

Initializes a new instance of the ErrorError class.

public ErrorError ();
Public Sub New ()

Applies to

ErrorError(String, String, String, IList<ErrorDetails>)

Initializes a new instance of the ErrorError class.

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

Parameters

code
String

Error code.

message
String

Error message.

target
String

Error target.

details
IList<ErrorDetails>

Error details.

Applies to