Returns true if friendship request already exists, false otherwise.

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

Syntax

C#
bool FriendRequestExists(
	Guid userId,
	Guid friendId
)
Visual Basic
Function FriendRequestExists ( 
	userId As Guid,
	friendId As Guid
) As Boolean
Visual C++
bool FriendRequestExists(
	Guid userId, 
	Guid friendId
)
F#
abstract 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.

See Also