C# Class Facebook.Graph.GraphEvent

Inheritance: GraphEntity, ISearchableEntity
Mostra file Open project: prabirshrestha/opengraph.net

Private Properties

Property Type Description

Public Methods

Method Description
Attend ( ) : void

RSVPs to the event on behalf of the user who is currently logged in.

This method is not available in Silverlight. The corresponding API is AttendAsync(Action).

AttendAsync ( System.Action callback ) : void

Asynchronously RSVPs to the event on behalf of the user who is currently logged in.

Decline ( ) : void

Declines the event on behalf of the user who is currently logged-in.

This method is not available in Silverlight. The corresponding API is RsvpMaybeAsync(Action).

DeclineAsync ( System.Action callback ) : void

Asynchronously declines the event on behalf of the user who is currently logged-in.

GraphEvent ( ) : System

Creates a new, empty GraphEvent.

GraphEvent ( JToken source, GraphSession session ) : System

Creates a new GraphEvent from the specified JSON object and GraphSession.

RsvpMaybe ( ) : void

RSVPs "Maybe" to the event on behalf of the user who is currently logged in.

This method is not available in Silverlight. The corresponding API is RsvpMaybeAsync(Action).

RsvpMaybeAsync ( System.Action callback ) : void

Asynchronously RSVPs "Maybe" to the event on behalf of the user who is currently logged in.

Method Details

Attend() public method

RSVPs to the event on behalf of the user who is currently logged in.

This method is not available in Silverlight. The corresponding API is AttendAsync(Action).

public Attend ( ) : void
return void

AttendAsync() public method

Asynchronously RSVPs to the event on behalf of the user who is currently logged in.
public AttendAsync ( System.Action callback ) : void
callback System.Action A callback to execute on completion of the request.
return void

Decline() public method

Declines the event on behalf of the user who is currently logged-in.

This method is not available in Silverlight. The corresponding API is RsvpMaybeAsync(Action).

public Decline ( ) : void
return void

DeclineAsync() public method

Asynchronously declines the event on behalf of the user who is currently logged-in.
public DeclineAsync ( System.Action callback ) : void
callback System.Action A callback to execute on completion of the request.
return void

GraphEvent() public method

Creates a new, empty GraphEvent.
public GraphEvent ( ) : System
return System

GraphEvent() public method

Creates a new GraphEvent from the specified JSON object and GraphSession.
public GraphEvent ( JToken source, GraphSession session ) : System
source JToken The source JSON object.
session GraphSession The session that is creating the object.
return System

RsvpMaybe() public method

RSVPs "Maybe" to the event on behalf of the user who is currently logged in.

This method is not available in Silverlight. The corresponding API is RsvpMaybeAsync(Action).

public RsvpMaybe ( ) : void
return void

RsvpMaybeAsync() public method

Asynchronously RSVPs "Maybe" to the event on behalf of the user who is currently logged in.
public RsvpMaybeAsync ( System.Action callback ) : void
callback System.Action A callback to execute on completion of the request.
return void