Removes friend from a list.

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

Syntax

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

Parameters

userId
Type: System..::..Guid
Id of a user that is owner of a friend list.
friendId
Type: System..::..Guid
Id of a friends.

Return Value

Type: Boolean
True if relation is removed.

See Also