RemoveMemeber Method

Facebook API Wrapper

Collapse image Expand Image Copy image CopyHover image
You can You can remove a User from a FriendList by issuing an HTTP DELETE request to FRIENDLIST_ID/members/USER_ID

Namespace: FacebookWrapper.ObjectModel
Assembly: FbGraphApiWrapper (in FbGraphApiWrapper.dll) Version: 6.2.1.2 (6.2.1.2)

Syntax

C#
public bool RemoveMemeber(
	string i_UserID
)
Visual Basic
Public Function RemoveMemeber ( _
	i_UserID As String _
) As Boolean
Visual C++
public:
bool RemoveMemeber(
	String^ i_UserID
)

Parameters

i_UserID
Type: System..::..String

[Missing <param name="i_UserID"/> documentation for "M:FacebookWrapper.ObjectModel.FriendList.RemoveMemeber(System.String)"]

Return Value

true if the remove succeeded, or false otherwise.

.NET Framework Security

Permission Description
manage_friendlists permission

See Also