X509Attribute Constructor (Oid, Int32, Byte) |
Initializes a new instance of the X509Attribute class using an Oid object, an integer that
identifies the tagged attribute and a byte array. This constructor is used only for tagged attributes.
Namespace:
System.Security.Cryptography
Assembly:
SysadminsLV.PKI (in SysadminsLV.PKI.dll) Version: 3.7.0.0 (3.7.0.0)
Syntax public X509Attribute(
Oid oid,
int partId,
byte[] rawData
)
Public Sub New (
oid As Oid,
partId As Integer,
rawData As Byte()
)
public:
X509Attribute(
Oid^ oid,
int partId,
array<unsigned char>^ rawData
)
new :
oid : Oid *
partId : int *
rawData : byte[] -> X509Attribute
Parameters
- oid
- Type: System.Security.CryptographyOid
An Oid object that identifies attribute. - partId
- Type: SystemInt32
An integer that identifies attribute. - rawData
- Type: SystemByte
A byte array that contains Abstract Syntax Notation One (ASN.1)-encoded data.
See Also