X509AuthorityInformationAccessExtension.EnumerateUris 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.
Overloads
EnumerateUris(Oid) |
Enumerates the AccessDescription values described in this extension, filtering the results to include only items using the specified access method and having a content data type of URI. |
EnumerateUris(String) |
Enumerates the AccessDescription values described in this extension, filtering the results to include only items using the specified access method and having a content data type of URI. |
EnumerateUris(Oid)
Enumerates the AccessDescription values described in this extension, filtering the results to include only items using the specified access method and having a content data type of URI.
public:
System::Collections::Generic::IEnumerable<System::String ^> ^ EnumerateUris(System::Security::Cryptography::Oid ^ accessMethodOid);
public System.Collections.Generic.IEnumerable<string> EnumerateUris (System.Security.Cryptography.Oid accessMethodOid);
member this.EnumerateUris : System.Security.Cryptography.Oid -> seq<string>
Public Function EnumerateUris (accessMethodOid As Oid) As IEnumerable(Of String)
Parameters
- accessMethodOid
- Oid
The object identifier representing the access method for filtering.
Returns
The URI-typed access location values that correspond to the requested access method.
Exceptions
accessMethodOid
is null
.
The Value property of the accessMethodOid
parameter is
null
or the empty string.
The contents of the extension could not be decoded successfully.
Remarks
This method does not validate or ensure that the produced values are valid URIs, merely that they were encoded as a URI.
Applies to
EnumerateUris(String)
Enumerates the AccessDescription values described in this extension, filtering the results to include only items using the specified access method and having a content data type of URI.
public:
System::Collections::Generic::IEnumerable<System::String ^> ^ EnumerateUris(System::String ^ accessMethodOid);
public System.Collections.Generic.IEnumerable<string> EnumerateUris (string accessMethodOid);
member this.EnumerateUris : string -> seq<string>
Public Function EnumerateUris (accessMethodOid As String) As IEnumerable(Of String)
Parameters
- accessMethodOid
- String
The dotted-decimal form of the access method for filtering.
Returns
The URI-typed access location values that correspond to the requested access method.
Exceptions
accessMethodOid
is null
.
The contents of the extension could not be decoded successfully.
Remarks
This method does not validate or ensure that the produced values are valid URIs, merely that they were encoded as a URI.