ICertificateOperations.GetAsync Method (String, String, CertificateGetParameters, CancellationToken)
Gets information about the specified certificate.
Namespace: Microsoft.Azure.Batch.Protocol
Assembly: Microsoft.Azure.Batch (in Microsoft.Azure.Batch.dll)
Syntax
Task<CertificateGetResponse> GetAsync(
string thumbprintAlgorithm,
string thumbprint,
CertificateGetParameters parameters,
CancellationToken cancellationToken
)
Task<CertificateGetResponse^>^ GetAsync(
String^ thumbprintAlgorithm,
String^ thumbprint,
CertificateGetParameters^ parameters,
CancellationToken cancellationToken
)
abstract GetAsync :
thumbprintAlgorithm:string *
thumbprint:string *
parameters:CertificateGetParameters *
cancellationToken:CancellationToken -> Task<CertificateGetResponse>
Function GetAsync (
thumbprintAlgorithm As String,
thumbprint As String,
parameters As CertificateGetParameters,
cancellationToken As CancellationToken
) As Task(Of CertificateGetResponse)
Parameters
thumbprintAlgorithm
Type: System.StringThe algorithm used to derive the thumbprint parameter. This must be sha1.
thumbprint
Type: System.StringThe thumbprint of the certificate to get.
parameters
Type: Microsoft.Azure.Batch.Protocol.Models.CertificateGetParametersThe parameters for the request.
cancellationToken
Type: System.Threading.CancellationTokenCancellation token.
Return Value
Type: System.Threading.Tasks.Task<CertificateGetResponse>
Response to a CertificateOperations.Get request.
See Also
ICertificateOperations Interface
Microsoft.Azure.Batch.Protocol Namespace
Return to top