X509AuthorityKeyIdentifierExtension Constructors

Definition

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()

Source:
X509AuthorityKeyIdentifierExtension.cs
Source:
X509AuthorityKeyIdentifierExtension.cs
Source:
X509AuthorityKeyIdentifierExtension.cs

Initializes a new instance of the X509AuthorityKeyIdentifierExtension class.

public:
 X509AuthorityKeyIdentifierExtension();
public X509AuthorityKeyIdentifierExtension ();
Public Sub New ()

Applies to

X509AuthorityKeyIdentifierExtension(Byte[], Boolean)

Source:
X509AuthorityKeyIdentifierExtension.cs
Source:
X509AuthorityKeyIdentifierExtension.cs
Source:
X509AuthorityKeyIdentifierExtension.cs

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)

Source:
X509AuthorityKeyIdentifierExtension.cs
Source:
X509AuthorityKeyIdentifierExtension.cs
Source:
X509AuthorityKeyIdentifierExtension.cs

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.

Applies to