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

Deletes one or more custom tags you previously registered for the calling application with fbml.registerCustomTags.

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

Syntax

C#
public FacebookResponse<bool> DeleteCustomTags(
	string[] names
)
Visual Basic (Declaration)
Public Function DeleteCustomTags ( _
	names As String() _
) As FacebookResponse(Of Boolean)
Visual C++
public:
FacebookResponse<bool>^ DeleteCustomTags(
	array<String^>^ names
)

Parameters

names
Type: array< System..::.String >[]()[]
A JSON-encoded array of strings containing the names of the tags you want to delete. If this attribute is missing, all the application's custom tags will be deleted.

Return Value

[Missing <returns> documentation for "M:Facebook.Api.Controllers.FbmlController.DeleteCustomTags(System.String[])"]

See Also

FbmlController Class
DeleteCustomTags Overload
Facebook.Api.Controllers Namespace