VerificationCodeResponseProperties Constructors

Definition

Overloads

VerificationCodeResponseProperties()

Initializes a new instance of the VerificationCodeResponseProperties class.

VerificationCodeResponseProperties(String, String, String, String, Nullable<Boolean>, Byte[], String, String)

Initializes a new instance of the VerificationCodeResponseProperties class.

VerificationCodeResponseProperties()

Initializes a new instance of the VerificationCodeResponseProperties class.

public VerificationCodeResponseProperties ();
Public Sub New ()

Applies to

VerificationCodeResponseProperties(String, String, String, String, Nullable<Boolean>, Byte[], String, String)

Initializes a new instance of the VerificationCodeResponseProperties class.

public VerificationCodeResponseProperties (string verificationCode = default, string subject = default, string expiry = default, string thumbprint = default, bool? isVerified = default, byte[] certificate = default, string created = default, string updated = default);
new Microsoft.Azure.Management.DeviceProvisioningServices.Models.VerificationCodeResponseProperties : string * string * string * string * Nullable<bool> * byte[] * string * string -> Microsoft.Azure.Management.DeviceProvisioningServices.Models.VerificationCodeResponseProperties
Public Sub New (Optional verificationCode As String = Nothing, Optional subject As String = Nothing, Optional expiry As String = Nothing, Optional thumbprint As String = Nothing, Optional isVerified As Nullable(Of Boolean) = Nothing, Optional certificate As Byte() = Nothing, Optional created As String = Nothing, Optional updated As String = Nothing)

Parameters

verificationCode
String

Verification code.

subject
String

Certificate subject.

expiry
String

Code expiry.

thumbprint
String

Certificate thumbprint.

isVerified
Nullable<Boolean>

Indicate if the certificate is verified by owner of private key.

certificate
Byte[]

base-64 representation of X509 certificate .cer file or just .pem file content.

created
String

Certificate created time.

updated
String

Certificate updated time.

Applies to