X509AuthorityKeyIdentifierExtension Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
X509AuthorityKeyIdentifierExtension() |
Initializes a new instance of the X509AuthorityKeyIdentifierExtension class. |
X509AuthorityKeyIdentifierExtension(Byte[], Boolean) |
Initializes a new instance of the X509AuthorityKeyIdentifierExtension class from an encoded representation of the extension and an optional critical marker. |
X509AuthorityKeyIdentifierExtension(ReadOnlySpan<Byte>, Boolean) |
Initializes a new instance of the X509AuthorityKeyIdentifierExtension class from an encoded representation of the extension and an optional critical marker. |
X509AuthorityKeyIdentifierExtension()
Initializes a new instance of the X509AuthorityKeyIdentifierExtension class.
public:
X509AuthorityKeyIdentifierExtension();
public X509AuthorityKeyIdentifierExtension ();
Public Sub New ()
Applies to
X509AuthorityKeyIdentifierExtension(Byte[], Boolean)
Initializes a new instance of the X509AuthorityKeyIdentifierExtension class from an encoded representation of the extension and an optional critical marker.
public X509AuthorityKeyIdentifierExtension (byte[] rawData, bool critical = false);
new System.Security.Cryptography.X509Certificates.X509AuthorityKeyIdentifierExtension : byte[] * bool -> System.Security.Cryptography.X509Certificates.X509AuthorityKeyIdentifierExtension
Public Sub New (rawData As Byte(), Optional critical As Boolean = false)
Parameters
- rawData
- Byte[]
The encoded data used to create the extension.
- critical
- Boolean
true
if the extension is critical; otherwise, false
.
Exceptions
rawData
is null
.
rawData
did not decode as an Authority Key Identifier extension.
Applies to
X509AuthorityKeyIdentifierExtension(ReadOnlySpan<Byte>, Boolean)
Initializes a new instance of the X509AuthorityKeyIdentifierExtension class from an encoded representation of the extension and an optional critical marker.
public X509AuthorityKeyIdentifierExtension (ReadOnlySpan<byte> rawData, bool critical = false);
new System.Security.Cryptography.X509Certificates.X509AuthorityKeyIdentifierExtension : ReadOnlySpan<byte> * bool -> System.Security.Cryptography.X509Certificates.X509AuthorityKeyIdentifierExtension
Public Sub New (rawData As ReadOnlySpan(Of Byte), Optional critical As Boolean = false)
Parameters
- rawData
- ReadOnlySpan<Byte>
The encoded data used to create the extension.
- critical
- Boolean
true
if the extension is critical; otherwise, false
.
Exceptions
rawData
did not decode as an Authority Key Identifier extension.