ServiceCertificateOperationsExtensions.ListAsync Method (IServiceCertificateOperations, String)

 

Asynchronously lists all of the service certificates that are associated with the specified cloud service.

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

Syntax

public static Task<ServiceCertificateListResponse> ListAsync(
    this IServiceCertificateOperations operations,
    string serviceName
)
public:
[ExtensionAttribute]
static Task<ServiceCertificateListResponse^>^ ListAsync(
    IServiceCertificateOperations^ operations,
    String^ serviceName
)
static member ListAsync : 
        operations:IServiceCertificateOperations *
        serviceName:string -> Task<ServiceCertificateListResponse>
<ExtensionAttribute>
Public Shared Function ListAsync (
    operations As IServiceCertificateOperations,
    serviceName As String
) As Task(Of ServiceCertificateListResponse)

Parameters

  • serviceName
    Type: System.String

    The name of the cloud service from which the list of certificates should be retrieved.

Return Value

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

The ServiceCertificateListResponse object that contains the list of service certificates.

Remarks

For more information about retrieving a list of service certificates, see List Service Certificates.

See Also

ServiceCertificateOperationsExtensions Class
Microsoft.WindowsAzure.Management.Compute Namespace

Return to top