Removes a friend connection request for the specified user and friend id.

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

Syntax

C#
bool RemoveFriendRequest(
	Guid userId,
	Guid friendId
)
Visual Basic
Function RemoveFriendRequest ( 
	userId As Guid,
	friendId As Guid
) As Boolean
Visual C++
bool RemoveFriendRequest(
	Guid userId, 
	Guid friendId
)
F#
abstract RemoveFriendRequest : 
        userId : Guid * 
        friendId : Guid -> bool 

Parameters

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

Return Value

Type: Boolean
True if the process finished successfully, false otherwise

See Also