Removes a friend connection 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 RemoveFriend(
	Guid userId,
	Guid friendId
)
Visual Basic
Function RemoveFriend ( 
	userId As Guid,
	friendId As Guid
) As Boolean
Visual C++
bool RemoveFriend(
	Guid userId, 
	Guid friendId
)
F#
abstract RemoveFriend : 
        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