Share via


DeleteCertificateError Constructors

Definition

Overloads

DeleteCertificateError()

Initializes a new instance of the DeleteCertificateError class.

DeleteCertificateError(String, String, IList<NameValuePair>)

Initializes a new instance of the DeleteCertificateError class.

DeleteCertificateError()

Source:
DeleteCertificateError.cs

Initializes a new instance of the DeleteCertificateError class.

public DeleteCertificateError ();
Public Sub New ()

Applies to

DeleteCertificateError(String, String, IList<NameValuePair>)

Source:
DeleteCertificateError.cs

Initializes a new instance of the DeleteCertificateError class.

public DeleteCertificateError (string code = default, string message = default, System.Collections.Generic.IList<Microsoft.Azure.Batch.Protocol.Models.NameValuePair> values = default);
new Microsoft.Azure.Batch.Protocol.Models.DeleteCertificateError : string * string * System.Collections.Generic.IList<Microsoft.Azure.Batch.Protocol.Models.NameValuePair> -> Microsoft.Azure.Batch.Protocol.Models.DeleteCertificateError
Public Sub New (Optional code As String = Nothing, Optional message As String = Nothing, Optional values As IList(Of NameValuePair) = Nothing)

Parameters

code
String

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

message
String

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

values
IList<NameValuePair>

A list of additional error details related to the Certificate deletion error.

Applies to