Checks if a friendship relation already exists between a currently active user and a specified friend.

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

Syntax

C#
bool RelationshipExists(
	Guid friendId
)
Visual Basic
Function RelationshipExists ( 
	friendId As Guid
) As Boolean
Visual C++
bool RelationshipExists(
	Guid friendId
)
F#
abstract RelationshipExists : 
        friendId : Guid -> bool 

Parameters

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

Return Value

Type: Boolean
True if the relationship between two users already exists, false otherwise

See Also