Creates an ObjectAttribute with a given type

Namespace:  Cryptware.NCryptoki
Assembly:  NCryptoki (in NCryptoki.dll)

Syntax

Visual Basic (Declaration)
Public Sub New ( _
	type As Integer, _
	value As Object _
)
C#
public ObjectAttribute(
	int type,
	Object value
)
Visual C++
public:
ObjectAttribute(
	int type, 
	Object^ value
)
JavaScript
Cryptware.NCryptoki.ObjectAttribute = function(type, value);

Parameters

type
Type: System..::..Int32
Attribute's type
value
Type: System..::..Object
Attribute's value. Value must be exclusively one of the follwing types: bool, uint, string, byte[].

See Also