Condividi tramite


WorkbookError Constructors

Definition

Overloads

WorkbookError()

Initializes a new instance of the WorkbookError class.

WorkbookError(String, String, IList<ErrorFieldContract>)

Initializes a new instance of the WorkbookError class.

WorkbookError()

Initializes a new instance of the WorkbookError class.

public WorkbookError ();
Public Sub New ()

Applies to

WorkbookError(String, String, IList<ErrorFieldContract>)

Initializes a new instance of the WorkbookError class.

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

Parameters

code
String

Service-defined error code. This code serves as a sub-status for the HTTP error code specified in the response.

message
String

Human-readable representation of the error.

details
IList<ErrorFieldContract>

The list of invalid fields send in request, in case of validation error.

Applies to