C# Класс Facebook.Graph.GraphEvent

Наследование: GraphEntity, ISearchableEntity
Показать файл Открыть проект

Private Properties

Свойство Тип Описание

Открытые методы

Метод Описание
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.

Описание методов

Attend() публичный Метод

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
Результат void

AttendAsync() публичный Метод

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.
Результат void

Decline() публичный Метод

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
Результат void

DeclineAsync() публичный Метод

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.
Результат void

GraphEvent() публичный Метод

Creates a new, empty GraphEvent.
public GraphEvent ( ) : System
Результат System

GraphEvent() публичный Метод

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.
Результат System

RsvpMaybe() публичный Метод

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
Результат void

RsvpMaybeAsync() публичный Метод

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.
Результат void