ICertificateOperations.GetAsync Method (String, String, CancellationToken)
Retrieve the certificate identified by certificate name. (see https://aka.ms/azureautomationsdk/certificateoperations for more information)
Namespace: Microsoft.WindowsAzure.Management.Automation
Assembly: Microsoft.WindowsAzure.Management.Automation (in Microsoft.WindowsAzure.Management.Automation.dll)
Syntax
Task<CertificateGetResponse> GetAsync(
string automationAccount,
string certificateName,
CancellationToken cancellationToken
)
Task<CertificateGetResponse^>^ GetAsync(
String^ automationAccount,
String^ certificateName,
CancellationToken cancellationToken
)
abstract GetAsync :
automationAccount:string *
certificateName:string *
cancellationToken:CancellationToken -> Task<CertificateGetResponse>
Function GetAsync (
automationAccount As String,
certificateName As String,
cancellationToken As CancellationToken
) As Task(Of CertificateGetResponse)
Parameters
automationAccount
Type: System.StringThe automation account name.
certificateName
Type: System.StringThe name of certificate.
cancellationToken
Type: System.Threading.CancellationTokenCancellation token.
Return Value
Type: System.Threading.Tasks.Task<CertificateGetResponse>
The response model for the get certificate operation.
See Also
ICertificateOperations Interface
Microsoft.WindowsAzure.Management.Automation Namespace
Return to top