Discuss this help topic in SecureBlackbox Forum

TElRelativeDistinguishedName.GetValuesByOID

TElRelativeDistinguishedName     See also     


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


Returns a list of values for the specified Object Identifier.

Declaration

[C#]
    void GetValuesByOID(byte[] OID, TElByteArrayList Values);

[VB.NET]
    Sub GetValuesByOID(ByVal OID As Byte(), ByVal Values As TElByteArrayList)

[Pascal]
    procedure GetValuesByOID(OID : string; Values : TStringList);

[C++]
    void GetValuesByOID(const std::vector<uint8_t> &OID, TElByteArrayList &Values);
    void GetValuesByOID(const std::vector<uint8_t> &OID, TElByteArrayList *Values);

[PHP]
    void GetValuesByOID(array of byte|string|NULL $OID, TElByteArrayList $Values)

[Java]
    void getValuesByOID(byte[] OID, TElByteArrayList Values);

Parameters

  • OID - OID of the given RDN.
  • Values - the container for the values.

Description

Use this method to obtain the values that correspond to the specified Object Identifier. If there is no pair for the specified Object Identifier, this method returns an empty list.

See also:     GetFirstValueByOID     GetValueCount    

Discuss this help topic in SecureBlackbox Forum