Type: IAuthenticationService
Summary:
Remarks:
DisplayLoginDialog
Summary:
Example:
This example shows you how to use this method:
Client.Authentication.DisplayLoginDialog();
DisplayLoginDialog(System.Boolean,System.UInt32,System.UInt32)
Summary:
Parameters:
Example:
This example shows you how to use this method:
Client.Authentication.DisplayLoginDialog(false, 200, 100);
Login(System.String,System.String)
Summary:
Parameters:
Example:
This example shows you how to use this method:
Client.Authentication.Login("John", "1234");
Logoff
Summary:
Example:
This example shows you how to use this method:
Client.Authentication.LogOff();
CurrentUserName
Summary:
Type:
System.String
Access:
Read
Example:
var user = Client.Authentication.CurrentUserName;
UserChanged
Summary:
Example:
This example shows you how to subscribe to this event
//---- JAVASCRIPT:
Client.Authentication.add_UserChanged(OnUserChanged);
...
function OnUserChanged(){
print("New user is: " + Client.Authentication.CurrentUserName);
}