/// <summary> /// Gets information about the post matching the specified <code>options</code>. /// </summary> /// <param name="options">The options for the call to the API.</param> public SocialHttpResponse GetPage(FacebookGetPageOptions options) { if (options == null) throw new ArgumentNullException("options"); return Client.DoAuthenticatedGetRequest("/" + options.Identifier, options); }
/// <summary> /// Gets information about the post matching the specified <code>options</code>. /// </summary> /// <param name="options">The options for the call to the API.</param> public FacebookPageResponse GetPage(FacebookGetPageOptions options) { if (options == null) throw new ArgumentNullException("options"); return FacebookPageResponse.ParseResponse(Raw.GetPage(options)); }