ErrorResponseBody Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ErrorResponseBody() |
Initializes a new instance of the ErrorResponseBody class. |
ErrorResponseBody(String, String, String, IList<InnerErrorDescription>) |
Initializes a new instance of the ErrorResponseBody class. |
ErrorResponseBody()
Initializes a new instance of the ErrorResponseBody class.
public ErrorResponseBody ();
Public Sub New ()
Applies to
ErrorResponseBody(String, String, String, IList<InnerErrorDescription>)
Initializes a new instance of the ErrorResponseBody class.
public ErrorResponseBody (string code, string message, string target = default, System.Collections.Generic.IList<Microsoft.Azure.Management.ContainerRegistry.Models.InnerErrorDescription> details = default);
new Microsoft.Azure.Management.ContainerRegistry.Models.ErrorResponseBody : string * string * string * System.Collections.Generic.IList<Microsoft.Azure.Management.ContainerRegistry.Models.InnerErrorDescription> -> Microsoft.Azure.Management.ContainerRegistry.Models.ErrorResponseBody
Public Sub New (code As String, message As String, Optional target As String = Nothing, Optional details As IList(Of InnerErrorDescription) = Nothing)
Parameters
- code
- String
error code.
- message
- String
error message.
- target
- String
target of the particular error.
- details
- IList<InnerErrorDescription>
an array of additional nested error response info objects, as described by this contract.
Applies to
Azure SDK for .NET