Returns true if friendship request already exists, false otherwise.

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

Syntax

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

Parameters

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

Return Value

Type: Boolean
True if a request exists, false otherwise.

Implements

IFriendBLL..::..FriendRequestExists(Guid, Guid)

See Also