/// <summary>
 /// Gets information about the post 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 GetPost(FacebookGetPostOptions options)
 {
     if (options == null)
     {
         throw new ArgumentNullException(nameof(options));
     }
     if (String.IsNullOrWhiteSpace(options.Identifier))
     {
         throw new PropertyNotSetException(nameof(options.Identifier), "A Facebook identifier (ID) must be specified.");
     }
     return(Client.DoHttpGetRequest("/" + options.Identifier, options));
 }
Пример #2
0
 /// <summary>
 /// Gets information about the post 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="FacebookGetPostResponse"/> representing the response.</returns>
 public FacebookGetPostResponse GetPost(FacebookGetPostOptions options)
 {
     return(FacebookGetPostResponse.ParseResponse(Raw.GetPost(options)));
 }