CertificateClient.GetPropertiesOfCertificates Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Lists the properties of all enabled and disabled certificates in the specified vault. You can use the returned Name in subsequent calls to GetCertificate(String, CancellationToken). This operation requires the certificates/list permission.
public virtual Azure.Pageable<Azure.Security.KeyVault.Certificates.CertificateProperties> GetPropertiesOfCertificates (bool includePending = false, System.Threading.CancellationToken cancellationToken = default);
abstract member GetPropertiesOfCertificates : bool * System.Threading.CancellationToken -> Azure.Pageable<Azure.Security.KeyVault.Certificates.CertificateProperties>
override this.GetPropertiesOfCertificates : bool * System.Threading.CancellationToken -> Azure.Pageable<Azure.Security.KeyVault.Certificates.CertificateProperties>
Public Overridable Function GetPropertiesOfCertificates (Optional includePending As Boolean = false, Optional cancellationToken As CancellationToken = Nothing) As Pageable(Of CertificateProperties)
Parameters
- includePending
- Boolean
Specifies whether to include certificates in a pending state as well.
- cancellationToken
- CancellationToken
A CancellationToken controlling the request lifetime.
Returns
An enumerable collection of certificate metadata.
Applies to
Azure SDK for .NET