X509CRL2Import Method (String) |
Note: This API is now obsolete.
Populates an
X509CRL2 object with the CRL information from a file.
Namespace:
System.Security.Cryptography.X509Certificates
Assembly:
SysadminsLV.PKI (in SysadminsLV.PKI.dll) Version: 3.7.0.0 (3.7.0.0)
Syntax [ObsoleteAttribute("Deprecated.", true)]
public void Import(
string path
)
<ObsoleteAttribute("Deprecated.", true)>
Public Sub Import (
path As String
)
public:
[ObsoleteAttribute(L"Deprecated.", true)]
void Import(
String^ path
)
[<ObsoleteAttribute("Deprecated.", true)>]
member Import :
path : string -> unit
Parameters
- path
- Type: SystemString
The path to a CRL file.
Remarks This method uses a CRL file, such as a file with a .crl extension, that represents
an X.509 certificate revocation list and populates the
X509CRL2 object with
the CRL the file contains. The method suppoers Base64-encoded or DER-encoded X.509 CRLs.
See Also