Discuss this help topic in SecureBlackbox Forum

TElLDAPPartialAttribute.Add

TElLDAPPartialAttribute     See also     


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


Adds an sttribute value to the list.

Declaration

[C#]
    void Add(byte[] Value);
    void Add(TElLDAPAttributeValue Value);
    void Add(string Value);

[VB.NET]
    Sub Add(ByVal Value As Byte())
    Sub Add(ByVal Value As TElLDAPAttributeValue)
    Sub Add(ByVal Value As String)

[Pascal]
    procedure Add(const Value : ByteArray);
    procedure Add(const Value : TElLDAPAttributeValue);

[C++]
    void Add(const std::vector<uint8_t> &Value);
    void Add(const TElLDAPAttributeValue &Value);
    void Add(const TElLDAPAttributeValue *Value);

[PHP]
    void Add(array of byte|string|NULL $Value)
    void Add(TElLDAPAttributeValue $Value)

[Java]
    void add(TElLDAPAttributeValue Value);
    void add(byte[] Value);
    void add(String Value);

Parameters

  • Value - the value to be added.

Description

    Call this method to add the attribute value to the list. The attribute values are cleared when TElLDAPPartialAttribute object is destroyed.

See also:     Values     Count    

Discuss this help topic in SecureBlackbox Forum