[This is preliminary documentation and is subject to change.]

Logs in registered user.

Namespace:  Subtitles.Services
Assembly:  Subtitles.Services (in Subtitles.Services)
Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
Guid LogIn(
	string username,
	string passwordHash,
	string clientInfo,
	out string error
)
Visual Basic (Declaration)
Function LogIn ( _
	username As String, _
	passwordHash As String, _
	clientInfo As String, _
	<OutAttribute> ByRef error As String _
) As Guid
Visual C++
Guid LogIn(
	String^ username, 
	String^ passwordHash, 
	String^ clientInfo, 
	[OutAttribute] String^% error
)

Parameters

username
Type: System..::.String
Username.
passwordHash
Type: System..::.String
MD5 password hash (see also System.Security.Cryptography..::.MD5).
clientInfo
Type: System..::.String
Information about client application.
error
Type: System..::.String%
Error description.

Return Value

Unique session identifier on success, Guid.Empty otherwise.

See Also