Discuss this help topic in SecureBlackbox Forum

TElPKCS11AttributeList.Values

TElPKCS11AttributeList     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


This property provides access to object attribute values.

Declaration

[C#]
    byte[] Values[int Index];

[VB.NET]
    Property Values(ByVal Index As Integer) As Byte()

[Pascal]
    property Values[Index : integer] : ByteArray;

[C++]
    void get_Values(int32_t Index, std::vector<uint8_t> &OutResult);
    void set_Values(int32_t Index, const std::vector<uint8_t> &Value);

[PHP]
    string get_Values(integer $Index)
    void set_Values(integer $Index, array of byte|string|NULL $Value)

[Java]
    not available

Parameters

  • Index - The index of the desired attribute in the list. The first item has Index=0, the second has Index=1 and so on.

Description

    Use this property to get object attribute values. Data type of the attribute is defined by the attribute code. See Attributes property description for reference.

See also:     Attributes     Count     Add     Remove    

Discuss this help topic in SecureBlackbox Forum