Beispiel #1
0
 /// <summary>
 /// Gets information about the post with the specified <paramref name="identifier"/>.
 /// </summary>
 /// <param name="identifier">The identifier (ID or alias) of the page.</param>
 /// <param name="fields">A collection of the fields that should be returned by the API.</param>
 /// <returns>An instance of <see cref="FacebookGetPageResponse"/> representing the response.</returns>
 public FacebookGetPageResponse GetPage(string identifier, FacebookFieldsCollection fields)
 {
     return(FacebookGetPageResponse.ParseResponse(Raw.GetPage(identifier, fields)));
 }
Beispiel #2
0
 /// <summary>
 /// Gets information about the 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="FacebookGetPageResponse"/> representing the response.</returns>
 public FacebookGetPageResponse GetPage(FacebookGetPageOptions options)
 {
     return(FacebookGetPageResponse.ParseResponse(Raw.GetPage(options)));
 }
Beispiel #3
0
 /// <summary>
 /// Gets information about the post with the specified <paramref name="identifier"/>.
 /// </summary>
 /// <param name="identifier">The identifier (ID or alias) of the page.</param>
 /// <returns>An instance of <see cref="FacebookGetPageResponse"/> representing the response.</returns>
 public FacebookGetPageResponse GetPage(string identifier)
 {
     return(FacebookGetPageResponse.ParseResponse(Raw.GetPage(identifier)));
 }