Discuss this help topic in SecureBlackbox Forum

TElSSHPublicKeyAttributes.Values

TElSSHPublicKeyAttributes     See also     


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


Provides access to individual attributes values.

Declaration

[C#]
    string Values[int Index];

[VB.NET]
    Property Values(ByVal Index As Integer) As String

[Pascal]
    property Values[Index: integer]: string;

[C++]
    void get_Values(int32_t i, std::string &OutResult);
    void set_Values(int32_t i, const std::string &v);

[PHP]
    string get_Values(integer $i)
    void set_Values(integer $i, string $v)

[Java]
    not available

Parameters

  • Index - The index of desired attribute value in the list. The first value has Index=0, the second has Index=1 and so on.
  • Value - desired attribute value
  • i - ...
  • v - ...

Description

    Use this property to access individual attributes values by index

See also:     Count     Names     Mandatory    

Discuss this help topic in SecureBlackbox Forum