Пример #1
0
 /// <summary>
 /// Gets a list of albums of the user or page with the specified <paramref name="identifier"/>.
 /// </summary>
 /// <param name="identifier">The ID of the user or page.</param>
 /// <returns>An instance of <see cref="FacebookGetAlbumsResponse"/> representing the response.</returns>
 public FacebookGetAlbumsResponse GetAlbums(string identifier)
 {
     return(FacebookGetAlbumsResponse.ParseResponse(Raw.GetAlbums(identifier)));
 }
Пример #2
0
 /// <summary>
 /// Gets a list of albums of the user or page with the specified <paramref name="identifier"/>.
 /// </summary>
 /// <param name="identifier">The ID of the user or page.</param>
 /// <param name="fields">A collection of the fields that should be returned by the API.</param>
 /// <returns>An instance of <see cref="FacebookGetAlbumsResponse"/> representing the response.</returns>
 public FacebookGetAlbumsResponse GetAlbums(string identifier, FacebookFieldsCollection fields)
 {
     return(FacebookGetAlbumsResponse.ParseResponse(Raw.GetAlbums(identifier, fields)));
 }
Пример #3
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)));
 }