C# Класс Opc.Ua.X509CRL

Provides access to an X509 CRL object.
Наследование: IDisposable
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
Dispose ( ) : void

Frees any unmanaged resources.

IsRevoked ( X509Certificate2 certificate ) : bool

Returns true the certificate is in the CRL.

VerifySignature ( X509Certificate2 issuer, bool throwOnError ) : bool

Verifies the signature on the CRL.

X509CRL ( byte crl ) : System

Loads a CRL from a memory buffer.

X509CRL ( string filePath ) : System

Loads a CRL from a file.

Приватные методы

Метод Описание
Dispose ( bool disposing ) : void

An overrideable version of the Dispose.

FreeUnmanagedPointers ( ) : void
Initialize ( byte crl ) : void
SaveUnmanagedPointer ( IntPtr pData ) : void

Описание методов

Dispose() публичный Метод

Frees any unmanaged resources.
public Dispose ( ) : void
Результат void

IsRevoked() публичный Метод

Returns true the certificate is in the CRL.
public IsRevoked ( X509Certificate2 certificate ) : bool
certificate System.Security.Cryptography.X509Certificates.X509Certificate2
Результат bool

VerifySignature() публичный Метод

Verifies the signature on the CRL.
public VerifySignature ( X509Certificate2 issuer, bool throwOnError ) : bool
issuer System.Security.Cryptography.X509Certificates.X509Certificate2
throwOnError bool
Результат bool

X509CRL() публичный Метод

Loads a CRL from a memory buffer.
public X509CRL ( byte crl ) : System
crl byte
Результат System

X509CRL() публичный Метод

Loads a CRL from a file.
public X509CRL ( string filePath ) : System
filePath string
Результат System