Removes a friend connection request for the specified user and friend id.

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

Syntax

C#
public virtual bool RemoveGroupRequest(
	Guid userId,
	Guid groupId
)
Visual Basic
Public Overridable Function RemoveGroupRequest ( 
	userId As Guid,
	groupId As Guid
) As Boolean
Visual C++
public:
virtual bool RemoveGroupRequest(
	Guid userId, 
	Guid groupId
)
F#
abstract RemoveGroupRequest : 
        userId : Guid * 
        groupId : Guid -> bool 
override RemoveGroupRequest : 
        userId : Guid * 
        groupId : Guid -> bool 

Parameters

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

Return Value

Type: Boolean
True if the process finished successfully, false otherwise

Implements

IGroupBLL..::..RemoveGroupRequest(Guid, Guid)

See Also