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

Updates a user's Facebook status.

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

Syntax

C#
[ObsoleteAttribute("Use Status.Set() instead.")]
public FacebookResponse<bool> SetStatus(
	long uid,
	string status,
	bool statusIncludesVerb
)
Visual Basic (Declaration)
<ObsoleteAttribute("Use Status.Set() instead.")> _
Public Function SetStatus ( _
	uid As Long, _
	status As String, _
	statusIncludesVerb As Boolean _
) As FacebookResponse(Of Boolean)
Visual C++
[ObsoleteAttribute(L"Use Status.Set() instead.")]
public:
FacebookResponse<bool>^ SetStatus(
	long long uid, 
	String^ status, 
	bool statusIncludesVerb
)

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 "...".
statusIncludesVerb
Type: System..::.Boolean
If set to true, the word "is" will not be prepended to the status message.

Return Value

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

See Also

UsersController Class
SetStatus Overload
Facebook.Api.Controllers Namespace