[This is preliminary documentation and subject to change.]

Returns whether the indicated login parameters work successfully.


Namespace: MediaMallTechnologies.Plugin
Assembly: Util (in Util.dll)

Syntax

Visual Basic (Declaration)
Function TestLogin( _ 
   ByVal username As String,  _ 
   ByVal password As String _ 
) As Boolean
C#
bool TestLogin(
   string username,
   string password
)
C++
bool TestLogin(
   String username,
   String password
) abstract 
J#
bool TestLogin(
   string username,
   string password
)
JScript
function TestLogin(
   username : String,
   password : String
) : bool

Parameters

username
The username or email address to login with.
password
The password to login with.

Return Value

true if the login test works, false otherwise.

Remarks

Is never invoked unless IPlayOnProviderSettings.RequiresLogin is also true. If successful, the values will be encrypted and stored locally on the PC, and returned via the IPlayOnHost.Properties field as "username" and "password".

See Also