Adds request for friendship.

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

Syntax

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

Parameters

userId
Type: System..::..Guid
User id of a user that makes request.
friendId
Type: System..::..Guid
User id of a user that will recieve request.

Return Value

Type: Boolean
True if request successfully created.

See Also