Checks if user exists.

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

Syntax

C#
bool UserExists(
	string userName
)
Visual Basic
Function UserExists ( 
	userName As String
) As Boolean
Visual C++
bool UserExists(
	String^ userName
)
F#
abstract UserExists : 
        userName : string -> bool 

Parameters

userName
Type: System..::..String
Username.

Return Value

Type: Boolean
True if user exists, false otherwise.

See Also