Discuss this help topic in SecureBlackbox Forum

TElRelativeDistinguishedName.Add

TElRelativeDistinguishedName     See also     


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


Adds a single pair to the RDN list.

Declaration

[C#]
    int Add(byte[] OID, byte[] Value, byte Tag);

[VB.NET]
    Function Add(ByVal OID As Byte(), ByVal Value As Byte(), ByVal Tag As Byte) As Integer

[Pascal]
    function Add(const OID : ByteArray; const Value : ByteArray; Tag : byte = 0) : integer;

[C++]
    int32_t Add(const std::vector<uint8_t> &OID, const std::vector<uint8_t> &Value, uint8_t Tag);

[PHP]
    integer Add(array of byte|string|NULL $OID, array of byte|string|NULL $Value, integer $Tag)

[Java]
    int add(byte[] OID, byte[] Value, byte arg2);

Parameters

  • OID - the Object Identifier of the newly added RDN.
  • Value - the value of the newly added RDN.
  • Tag - the tag number of the newly added RDN.

Return value

The index of the newly added pair.

Description

Use this method to add a new «OID=Value» pair to the RDN list.

See also:     Remove    

Discuss this help topic in SecureBlackbox Forum