Determines if the user avatar is present for the user.

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

Syntax

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

Parameters

userId
Type: System..::..Guid
User id.

Return Value

Type: Boolean
True if the user has avatar in the system, false otherwise.

Implements

IUserProfileBLL..::..ShouldShowUserAvatar(Guid)

See Also