C# Class Facebook.Graph.GraphEvent

Inheritance: GraphEntity, ISearchableEntity
Afficher le fichier Open project: prabirshrestha/opengraph.net

Private Properties

Свойство Type Description

Méthodes publiques

Méthode 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 méthode

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
Résultat void

AttendAsync() public méthode

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.
Résultat void

Decline() public méthode

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
Résultat void

DeclineAsync() public méthode

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.
Résultat void

GraphEvent() public méthode

Creates a new, empty GraphEvent.
public GraphEvent ( ) : System
Résultat System

GraphEvent() public méthode

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.
Résultat System

RsvpMaybe() public méthode

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
Résultat void

RsvpMaybeAsync() public méthode

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.
Résultat void