Discuss this help topic in SecureBlackbox Forum

TElSSHCustomKeyStorage.IndexOf

TElSSHCustomKeyStorage     See also     


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


This method returns the index of the desired public key in the storage.

Declaration

[C#]
    int IndexOf(TElSSHKey Key);

[VB.NET]
    Function IndexOf(ByVal Key As TElSSHKey) As Integer

[Pascal]
    function IndexOf(Key : TElSSHKey) : integer; virtual;

[C++]
    int32_t IndexOf(TElSSHKey &Key);
    int32_t IndexOf(TElSSHKey *Key);

[PHP]
    integer IndexOf(TElSSHKey $Key)

[Java]
    int indexOf(TElSSHKey arg0);

Parameters

  • Key - public key, index of which is required

Return value

    On success, returns index of the key in the list.
    Returns -1 if there is no such key in the storage.

Description

    Use this method to obtain the index of the desired public key in the storage.

See also:     Keys    

Discuss this help topic in SecureBlackbox Forum