/// <summary> /// Lists all of the Certificates that have been added to the specified /// Account. /// </summary> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='nextPageLink'> /// The NextLink from the previous successful call to List operation. /// </param> /// <param name='certificateListNextOptions'> /// Additional parameters for the operation /// </param> public static IPage <Certificate> ListNext(this ICertificateOperations operations, string nextPageLink, CertificateListNextOptions certificateListNextOptions = default(CertificateListNextOptions)) { return(operations.ListNextAsync(nextPageLink, certificateListNextOptions).GetAwaiter().GetResult()); }
/// <summary> /// Retrieve next list of certificates. (see /// http://aka.ms/azureautomationsdk/certificateoperations for more /// information) /// </summary> /// <param name='operations'> /// Reference to the /// Microsoft.WindowsAzure.Management.Automation.ICertificateOperations. /// </param> /// <param name='nextLink'> /// Required. The link to retrieve next set of items. /// </param> /// <returns> /// The response model for the list certificate operation. /// </returns> public static Task <CertificateListResponse> ListNextAsync(this ICertificateOperations operations, string nextLink) { return(operations.ListNextAsync(nextLink, CancellationToken.None)); }