'Declaration
Public Shared Function Create( _ ByVal encodedData As ReadOnlyMemory(Of Byte), _ ByVal useCache As Boolean _ ) As X509Certificate2
'Usage
Dim encodedData As ReadOnlyMemory(Of Byte) Dim useCache As Boolean Dim value As X509Certificate2 value = CertificateFactory.Create(encodedData, useCache)
public static X509Certificate2 Create( ReadOnlyMemory<byte> encodedData, bool useCache )
public: static X509Certificate2^ Create( ReadOnlyMemory<byte> encodedData, bool useCache )
Parameters
- encodedData
- The encoded data.
- useCache
- if set to
true
the copy of the certificate in the cache is used.
Return Value
The certificate.