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

Sends a notification to a set of users.

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

Syntax

C#
public FacebookResponse<string> Send(
	string[] toIds,
	string notification
)
Visual Basic (Declaration)
Public Function Send ( _
	toIds As String(), _
	notification As String _
) As FacebookResponse(Of String)
Visual C++
public:
FacebookResponse<String^>^ Send(
	array<String^>^ toIds, 
	String^ notification
)

Parameters

toIds
Type: array< System..::.String >[]()[]
Comma-separated list of recipient IDs. These must be either friends of the logged-in user or people who have added your application. To send a notification to the current logged-in user without a name prepended to the message, set
CopyC#
to_ids
to the empty string.
notification
Type: System..::.String
FBML for the notifications page. Uses a stripped down version allowing only text and links.

Return Value

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

See Also

NotificationsController Class
Send Overload
Facebook.Api.Controllers Namespace