Discuss this help topic in SecureBlackbox Forum

TElRelativeDistinguishedName.GetFirstValueByOID

TElRelativeDistinguishedName     See also     


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


Returns the first value of a multivalued RDN.

Declaration

[C#]
    byte[] GetFirstValueByOID(byte[] OID);

[VB.NET]
    Function GetFirstValueByOID(ByVal OID As Byte()) As Byte()

[Pascal]
    function GetFirstValueByOID(const OID : ByteArray) : ByteArray;

[C++]
    void GetFirstValueByOID(const std::vector<uint8_t> &OID, std::vector<uint8_t> &OutResult);

[PHP]
    string GetFirstValueByOID(array of byte|string|NULL $OID)

[Java]
    byte[] getFirstValueByOID(byte[] OID);

Parameters

  • OID - OID of a given RDN.

Return value

Returns the first value.

Description

Use this method to get the first value of the given RDN.

See also:     GetValueCount     GetValuesByOID    

Discuss this help topic in SecureBlackbox Forum