X509AuthorityKeyIdentifierExtension Constructor (String, Boolean) |
Intitializes a new instance of X509AuthorityKeyIdentifierExtension class from
a key identifier value and a value that identifies whether the extension is critical.
Namespace:
System.Security.Cryptography.X509Certificates
Assembly:
SysadminsLV.PKI (in SysadminsLV.PKI.dll) Version: 3.7.0.0 (3.7.0.0)
Syntax public X509AuthorityKeyIdentifierExtension(
string keyIdentifier,
bool critical
)
Public Sub New (
keyIdentifier As String,
critical As Boolean
)
public:
X509AuthorityKeyIdentifierExtension(
String^ keyIdentifier,
bool critical
)
new :
keyIdentifier : string *
critical : bool -> X509AuthorityKeyIdentifierExtension
Parameters
- keyIdentifier
- Type: SystemString
Must be a hex string that represents hash value. - critical
- Type: SystemBoolean
True if the extension is critical; otherwise, False.
Exceptions Exception | Condition |
---|
ArgumentNullException | keyIdentifier value is null or empty.
|
See Also