Joins the user to the group.

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

Syntax

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

Parameters

groupId
Type: System..::..Guid
Group id.
userId
Type: System..::..Guid
User id.

Return Value

Type: Boolean
True if the joining was successful, false otherwise.

See Also