ComputeNodeError 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
ComputeNodeError() |
Initializes a new instance of the ComputeNodeError class. |
ComputeNodeError(String, String, IList<NameValuePair>) |
Initializes a new instance of the ComputeNodeError class. |
ComputeNodeError()
- Source:
- ComputeNodeError.cs
Initializes a new instance of the ComputeNodeError class.
public ComputeNodeError ();
Public Sub New ()
Applies to
ComputeNodeError(String, String, IList<NameValuePair>)
- Source:
- ComputeNodeError.cs
Initializes a new instance of the ComputeNodeError class.
public ComputeNodeError (string code = default, string message = default, System.Collections.Generic.IList<Microsoft.Azure.Batch.Protocol.Models.NameValuePair> errorDetails = default);
new Microsoft.Azure.Batch.Protocol.Models.ComputeNodeError : string * string * System.Collections.Generic.IList<Microsoft.Azure.Batch.Protocol.Models.NameValuePair> -> Microsoft.Azure.Batch.Protocol.Models.ComputeNodeError
Public Sub New (Optional code As String = Nothing, Optional message As String = Nothing, Optional errorDetails As IList(Of NameValuePair) = Nothing)
Parameters
- code
- String
An identifier for the Compute Node error. Codes are invariant and are intended to be consumed programmatically.
- message
- String
A message describing the Compute Node error, intended to be suitable for display in a user interface.
- errorDetails
- IList<NameValuePair>
The list of additional error details related to the Compute Node error.
Applies to
Azure SDK for .NET