Validate user.

Namespace: MonoSoftware.MonoX.MetaWeblog
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
protected virtual bool ValidateUser(
	string username,
	string password
)
Visual Basic
Protected Overridable Function ValidateUser ( 
	username As String,
	password As String
) As Boolean
Visual C++
protected:
virtual bool ValidateUser(
	String^ username, 
	String^ password
)
F#
abstract ValidateUser : 
        username : string * 
        password : string -> bool 
override ValidateUser : 
        username : string * 
        password : string -> bool 

Parameters

username
Type: System..::..String
Username
password
Type: System..::..String
Password

Return Value

Type: Boolean
True if user is valid, false otherwise

See Also