Discuss this help topic in SecureBlackbox Forum

TElOTPUserStorage.IndexOf

TElOTPUserStorage     See also     


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


Returns the index of the specified user in the storage.

Declaration

[C#]
    int IndexOf(TElOTPUser User);

[VB.NET]
    Function IndexOf(ByVal User As TElOTPUser) As Integer

[Pascal]
    function IndexOf(User: TElOTPUser): integer;

[C++]
    int32_t IndexOf(TElOTPUser &User);
    int32_t IndexOf(TElOTPUser *User);

[PHP]
    integer IndexOf(TElOTPUser $User)

[Java]
    int indexOf(TElOTPUser User);

Parameters

  • User - the user which index is requested.

Return value

    Returns the index of the specified user in the list. If there is no such user in the list, returns -1.

Description

    Use this method to get the index of the specified user in the list.

See also:     Users    

Discuss this help topic in SecureBlackbox Forum