コード例 #1
0
 /// <summary>
 /// Gets a list of albums of the 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 GetAlbums(FacebookGetAlbumsOptions 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 + "/albums", options));
 }
コード例 #2
0
 /// <summary>
 /// Gets a list of albums of the 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="FacebookGetAlbumsResponse"/> representing the response.</returns>
 public FacebookGetAlbumsResponse GetAlbums(FacebookGetAlbumsOptions options)
 {
     return(FacebookGetAlbumsResponse.ParseResponse(Raw.GetAlbums(options)));
 }