Checks if friendship request exists.

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

Syntax

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

Parameters

userId
Type: System..::..Guid
Id of a user that made request.
friendId
Type: System..::..Guid
Id of a friend.

Return Value

Type: Boolean
True if request exists.

See Also