Check if user exists.

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

Syntax

C#
public virtual bool UserExists(
	Guid userId
)
Visual Basic
Public Overridable Function UserExists ( 
	userId As Guid
) As Boolean
Visual C++
public:
virtual bool UserExists(
	Guid userId
)
F#
abstract UserExists : 
        userId : Guid -> bool 
override UserExists : 
        userId : Guid -> bool 

Parameters

userId
Type: System..::..Guid
User Id.

Return Value

Type: Boolean
True if user exists, false otherwise.

Implements

IUserBLL..::..UserExists(Guid)

See Also