[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.3.23 (0.2009.3.23)

Syntax

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

Parameters

type
Type: System..::.String
Specify whether the notification is a
CopyC#
user_to_user
one or an
CopyC#
app_to_user
. (Default value is user_to_user.)
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[],System.String)"]

See Also

NotificationsController Class
Send Overload
Facebook.Api.Controllers Namespace