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

Edits an existing event. The application must be an admin of the event.

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

Syntax

C#
public FacebookResponse<bool> Edit(
	long eid,
	Dictionary<string, string> eventInfo
)
Visual Basic (Declaration)
Public Function Edit ( _
	eid As Long, _
	eventInfo As Dictionary(Of String, String) _
) As FacebookResponse(Of Boolean)
Visual C++
public:
FacebookResponse<bool>^ Edit(
	long long eid, 
	Dictionary<String^, String^>^ eventInfo
)

Parameters

eid
Type: System..::.Int64
The event ID.
eventInfo
Type: System.Collections.Generic..::.Dictionary<(Of <(String, String>)>)
The event information, passed as a JSON-encoded object. See the Notes below for information on what parameters you can change in the object.

Return Value

[Missing <returns> documentation for "M:Facebook.Api.Controllers.EventsController.Edit(System.Int64,System.Collections.Generic.Dictionary{System.String,System.String})"]

See Also

EventsController Class
Facebook.Api.Controllers Namespace