/// <summary> /// Gets information about the album with the specified <paramref name="identifier"/>. /// </summary> /// <param name="identifier">The ID of the album.</param> /// <param name="fields">A collection of the fields that should be returned by the API.</param> /// <returns>An instance of <see cref="FacebookGetAlbumResponse"/> representing the response.</returns> public FacebookGetAlbumResponse GetAlbum(string identifier, FacebookFieldsCollection fields) { return(FacebookGetAlbumResponse.ParseResponse(Raw.GetAlbum(identifier, fields))); }
/// <summary> /// Gets information about the album 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="FacebookGetAlbumResponse"/> representing the response.</returns> public FacebookGetAlbumResponse GetAlbum(FacebookGetAlbumOptions options) { return(FacebookGetAlbumResponse.ParseResponse(Raw.GetAlbum(options))); }
/// <summary> /// Gets information about the album with the specified <paramref name="identifier"/>. /// </summary> /// <param name="identifier">The ID of the album.</param> /// <returns>An instance of <see cref="FacebookGetAlbumResponse"/> representing the response.</returns> public FacebookGetAlbumResponse GetAlbum(string identifier) { return(FacebookGetAlbumResponse.ParseResponse(Raw.GetAlbum(identifier))); }