CertificateQuery.EnhancedKeyUsages Property
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.
Gets a collection of object identifiers (OIDs) for the enhanced key usage extension to search for.
public:
property IVector<Platform::String ^> ^ EnhancedKeyUsages { IVector<Platform::String ^> ^ get(); };
IVector<winrt::hstring> EnhancedKeyUsages();
public IList<string> EnhancedKeyUsages { get; }
var iVector = certificateQuery.enhancedKeyUsages;
Public ReadOnly Property EnhancedKeyUsages As IList(Of String)
Property Value
A collection of object identifiers (OIDs) for the enhanced key usage extension to search for.
Examples
var query = new Windows.Security.Cryptography.Certificates.CertificateQuery();
query.issuerName = "Consoto Bank Issuing CA";
var enhancedKeyUsages = query.enhancedKeyUsages;
enhancedKeyUsage[0] = "1.3.6.1.5.5.7.3.2"; // client auth
var certificates;
Windows.Security.Cryptography.Certificates.
CertificateStores.findAllAsync(query).done(function(queriedCertificates)
{
certificates = queriedCertificates;
},
function(e)
{
WinJS.log("FindAllAsync failed, error:" + e.number + e.message);
});