共用方式為


CertificateAddParameter Constructors

Definition

Overloads

CertificateAddParameter()

Initializes a new instance of the CertificateAddParameter class.

CertificateAddParameter(String, String, String, Nullable<CertificateFormat>, String)

Initializes a new instance of the CertificateAddParameter class.

CertificateAddParameter()

Source:
CertificateAddParameter.cs

Initializes a new instance of the CertificateAddParameter class.

public CertificateAddParameter ();
Public Sub New ()

Applies to

CertificateAddParameter(String, String, String, Nullable<CertificateFormat>, String)

Source:
CertificateAddParameter.cs

Initializes a new instance of the CertificateAddParameter class.

public CertificateAddParameter (string thumbprint, string thumbprintAlgorithm, string data, Microsoft.Azure.Batch.Protocol.Models.CertificateFormat? certificateFormat = default, string password = default);
new Microsoft.Azure.Batch.Protocol.Models.CertificateAddParameter : string * string * string * Nullable<Microsoft.Azure.Batch.Protocol.Models.CertificateFormat> * string -> Microsoft.Azure.Batch.Protocol.Models.CertificateAddParameter
Public Sub New (thumbprint As String, thumbprintAlgorithm As String, data As String, Optional certificateFormat As Nullable(Of CertificateFormat) = Nothing, Optional password As String = Nothing)

Parameters

thumbprint
String

The X.509 thumbprint of the Certificate. This is a sequence of up to 40 hex digits (it may include spaces but these are removed).

thumbprintAlgorithm
String

The algorithm used to derive the thumbprint. This must be sha1.

data
String

The base64-encoded contents of the Certificate. The maximum size is 10KB.

certificateFormat
Nullable<CertificateFormat>

The format of the Certificate data.

password
String

The password to access the Certificate's private key.

Applies to