Initializes a new instance of the
Extension class.
Namespace: LLCryptoLib.Security.CertificatesAssembly: LLCryptoLib (in LLCryptoLib.dll) Version: 2.0.1024.0 (2.0.1024)
Syntax
C# |
---|
public Extension(
string oid,
bool critical,
byte[] val
) |
Visual Basic |
---|
Public Sub New ( _
oid As String, _
critical As Boolean, _
val As Byte() _
) |
Visual C++ |
---|
public:
Extension(
String^ oid,
bool critical,
array<unsigned char>^ val
) |
Parameters
- oid
- Type: System..::..String
The object identifier of the extension.
- critical
- Type: System..::..Boolean
true if it is a critical extension, false otherwise.
- val
- Type: array<System..::..Byte>[]()[][]
A byte array that contains the encoded extension.
See Also