Ejemplo n.º 1
0
 /// <summary>
 /// Gets information about the event matching the specified <paramref name="options"/>.
 /// </summary>
 /// <param name="options">The options for the call to the API.</param>
 /// <returns>An instance of <see cref="FacebookGetEventResponse"/> representing the response.</returns>
 /// <see>
 ///     <cref>https://developers.facebook.com/docs/graph-api/reference/event</cref>
 /// </see>
 public FacebookGetEventResponse GetEvent(FacebookGetEventOptions options)
 {
     return(FacebookGetEventResponse.ParseResponse(Raw.GetEvent(options)));
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Gets information about the event with the specified <paramref name="identifier"/>.
 /// </summary>
 /// <param name="identifier">The ID of the event.</param>
 /// <returns>An instance of <see cref="FacebookGetEventResponse"/> representing the response.</returns>
 /// <see>
 ///     <cref>https://developers.facebook.com/docs/graph-api/reference/event</cref>
 /// </see>
 public FacebookGetEventResponse GetEvent(string identifier)
 {
     return(FacebookGetEventResponse.ParseResponse(Raw.GetEvent(identifier)));
 }