Checks if specified userId has blocked blockedUserId.

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

Syntax

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

Parameters

userId
Type: System..::..Guid
User id.
blockedUserId
Type: System..::..Guid
Blocked user id.

Return Value

Type: Boolean
True if blocked, false otherwise

Implements

IFriendRepository..::..IsUserBlocked(Guid, Guid)

See Also