Class CrlUrlList
This class parses the Certificate Revocation Lists of a signing certificate. It provides access to all CRL URLs in the certificate.
Inheritance
System.Object
CrlUrlList
Namespace: PeNet.Header.Authenticode
Assembly: PeNet.dll
Syntax
public class CrlUrlList : object
Constructors
| Improve this Doc View SourceCrlUrlList(Byte[])
Create a new CrlUrlList object.
Declaration
public CrlUrlList(byte[] rawData)
Parameters
Type | Name | Description |
---|---|---|
System.Byte[] | rawData | A byte array containing a X509 certificate |
CrlUrlList(X509Certificate2)
Create a new CrlUrlList object.
Declaration
public CrlUrlList(X509Certificate2 cert)
Parameters
Type | Name | Description |
---|---|---|
X509Certificate2 | cert | A X509 certificate object. |
Properties
| Improve this Doc View SourceUrls
List with all CRL URLs.
Declaration
public List<string> Urls { get; }
Property Value
Type | Description |
---|---|
List<System.String> |
Methods
| Improve this Doc View SourceToString()
Create a string representation of all CRL in the list.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String | CRL URLs. |