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

Updates a user's Facebook status through 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> Set(
	long uid,
	string status
)
Visual Basic (Declaration)
Public Function Set ( _
	uid As Long, _
	status As String _
) As FacebookResponse(Of Boolean)
Visual C++
public:
FacebookResponse<bool>^ Set(
	long long uid, 
	String^ status
)

Parameters

uid
Type: System..::.Int64
The user ID of the user whose status you are setting. If this parameter is not specified, then it defaults to the session user.
Note: This parameter applies only to Web applications and is required by them only if the
CopyC#
session_key
is not specified. Facebook ignores this parameter if it is passed by a desktop application.
status
Type: System..::.String
The status message to set.
Note: The maximum message length is 160 characters; messages longer than that limit will be truncated and appended with "...".

Return Value

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

See Also

StatusController Class
Set Overload
Facebook.Api.Controllers Namespace