Discuss this help topic in SecureBlackbox Forum

TElHTTPOAuth2CustomApplicationStorage.Find

TElHTTPOAuth2CustomApplicationStorage     See also     


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


Searches for the desired application in the storage.

Declaration

[C#]
    TElHTTPOAuth2ApplicationInfo Find(string ClientID);

[VB.NET]
    Function Find(ByVal ClientID As String) As TElHTTPOAuth2ApplicationInfo

[Pascal]
    function Find(const ClientID : string) : TElHTTPOAuth2ApplicationInfo; virtual;

[C++]
    TElHTTPOAuth2ApplicationInfoHandle Find(const std::string &ClientID);

[PHP]
    TElHTTPOAuth2ApplicationInfo Find(string $ClientID)

[Java]
    TElHTTPOAuth2ApplicationInfo find(String ClientID);

Parameters

  • ClientID - the Client ID of the object to search for.

Return value

Returns the index of the application infor object in the storage on success, and -1 on failure.

Description

Use this method to get the index of the application given its Client ID.

See also:     Applications     Add     Remove    

Discuss this help topic in SecureBlackbox Forum