Share via


IClientRootCertificateOperations.GetAsync Method (String, String, CancellationToken)

 

The Get Client Root Certificate operation returns the public portion of a previously uploaded client root certificate in a base-64-encoded format from Azure. (see https://msdn.microsoft.com/en-us/library/windowsazure/dn205127.aspx for more information)

Namespace:   Microsoft.WindowsAzure.Management.Network
Assembly:  Microsoft.WindowsAzure.Management.Network (in Microsoft.WindowsAzure.Management.Network.dll)

Syntax

Task<ClientRootCertificateGetResponse> GetAsync(
    string networkName,
    string certificateThumbprint,
    CancellationToken cancellationToken
)
Task<ClientRootCertificateGetResponse^>^ GetAsync(
    String^ networkName,
    String^ certificateThumbprint,
    CancellationToken cancellationToken
)
abstract GetAsync : 
        networkName:string *
        certificateThumbprint:string *
        cancellationToken:CancellationToken -> Task<ClientRootCertificateGetResponse>
Function GetAsync (
    networkName As String,
    certificateThumbprint As String,
    cancellationToken As CancellationToken
) As Task(Of ClientRootCertificateGetResponse)

Parameters

  • networkName
    Type: System.String

    The name of the virtual network for this gateway.

  • certificateThumbprint
    Type: System.String

    The X509 certificate thumbprint.

Return Value

Type: System.Threading.Tasks.Task<ClientRootCertificateGetResponse>

Response to the Get Client Root Certificate operation.

See Also

IClientRootCertificateOperations Interface
Microsoft.WindowsAzure.Management.Network Namespace

Return to top