/// <summary>
 /// Gets a list of events for a user or page 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="IHttpResponse"/> representing the raw response.</returns>
 public IHttpResponse GetEvents(FacebookGetEventsOptions options)
 {
     if (options == null)
     {
         throw new ArgumentNullException(nameof(options));
     }
     if (String.IsNullOrWhiteSpace(options.Identifier))
     {
         throw new PropertyNotSetException(nameof(options.Identifier));
     }
     return(Client.DoHttpGetRequest("/" + options.Identifier + "/events", options));
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Gets a list of events for a user or page 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="FacebookGetEventsResponse"/> representing the response.</returns>
 public FacebookGetEventsResponse GetEvents(FacebookGetEventsOptions options)
 {
     return(FacebookGetEventsResponse.ParseResponse(Raw.GetEvents(options)));
 }