[This is preliminary documentation and is subject to change.]

Removes a specific extended permission that a user explicitly granted to your application.

Namespace:  Facebook.Api.Controllers
Assembly:  Facebook (in Facebook.dll) Version: 0.2009.4.13 (0.2009.4.13)

Syntax

C#
public FacebookResponse<bool> RevokeExtendedPermission(
	long uid,
	string perm
)
Visual Basic (Declaration)
Public Function RevokeExtendedPermission ( _
	uid As Long, _
	perm As String _
) As FacebookResponse(Of Boolean)
Visual C++
public:
FacebookResponse<bool>^ RevokeExtendedPermission(
	long long uid, 
	String^ perm
)

Parameters

uid
Type: System..::.Int64
The user ID of the user whose extended permission you want to revoke. If you don't specify this parameter, then you must have a valid session for the current user, and that session's user will have the specified permission revoked.
perm
Type: System..::.String
The extended permission to revoke.

Return Value

[Missing <returns> documentation for "M:Facebook.Api.Controllers.AuthController.RevokeExtendedPermission(System.Int64,System.String)"]

See Also

AuthController Class
RevokeExtendedPermission Overload
Facebook.Api.Controllers Namespace