CertificateCloudCredentials.ManagementCertificate Property

 

Gets the management certificate that is associated with the subscription.

Namespace:   Microsoft.WindowsAzure
Assembly:  Microsoft.WindowsAzure.Common.NetFramework (in Microsoft.WindowsAzure.Common.NetFramework.dll)

Syntax

public X509Certificate2 ManagementCertificate { get; private set; }
public:
property X509Certificate2^ ManagementCertificate {
    X509Certificate2^ get();
    private: void set(X509Certificate2^ value);
}
member ManagementCertificate : X509Certificate2 with get, private set
Public Property ManagementCertificate As X509Certificate2
    Get
    Private Set
End Property

Property Value

Type: System.Security.Cryptography.X509Certificates.X509Certificate2

The authenticated management certificate.

Remarks

Mutual authentication of management certificates over SSL is used to ensure that a request made to the service is secure. No anonymous requests are allowed.

See Also

CertificateCloudCredentials Class
Microsoft.WindowsAzure Namespace

Return to top