Discuss this help topic in SecureBlackbox Forum

TElSSHPublicKeyAttributes.Add

TElSSHPublicKeyAttributes     See also     


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


This method adds attribute to the list

Declaration

[C#]
    void Add(string AName, string AValue, bool AMandatory);

[VB.NET]
    Sub Add(ByVal AName As String, ByVal AValue As String, ByVal AMandatory As Boolean)

[Pascal]
    procedure Add(const Name, Value: string; Mandatory: boolean = false);

[C++]
    void Add(const std::string &AName, const std::string &AValue, bool AMandatory);

[PHP]
    void Add(string $AName, string $AValue, bool $AMandatory)

[Java]
    void add(String AName, String AValue, boolean AMandatory);

Parameters

  • Name - attribute name
  • Value - attribute value
  • Mandatory - specifies if attribute should be marked as mandatory
  • AName - ...
  • AValue - ...
  • AMandatory - ...

Description

    Call this method to add the attribute to the list.

See also:     Remove     Clear    

Discuss this help topic in SecureBlackbox Forum