A tag cluster (a tag and a group of common sibling tags).
Inheritance: IFlickrParsable
コード例 #1
0
 /// <summary>
 /// Returns the first 24 photos for a given tag cluster.
 /// </summary>
 /// <param name="cluster">The <see cref="Cluster"/> instance to return the photos for.</param>
 /// <param name="extras">Extra information to return with each photo.</param>
 /// <param name="callback">Callback method to call upon return of the response from Flickr.</param>
 public void TagsGetClusterPhotosAsync(Cluster cluster, PhotoSearchExtras extras, Action<FlickrResult<PhotoCollection>> callback)
 {
     TagsGetClusterPhotosAsync(cluster.SourceTag, cluster.ClusterId, extras, callback);
 }
コード例 #2
0
 /// <summary>
 /// Returns the first 24 photos for a given tag cluster.
 /// </summary>
 /// <param name="cluster">The <see cref="Cluster"/> instance to return the photos for.</param>
 /// <param name="extras">Extra information to return with each photo.</param>
 /// <returns></returns>
 public PhotoCollection TagsGetClusterPhotos(Cluster cluster, PhotoSearchExtras extras)
 {
     return TagsGetClusterPhotos(cluster.SourceTag, cluster.ClusterId, extras);
 }
コード例 #3
0
 public PhotoCollection TagsGetClusterPhotos(Cluster cluster, PhotoSearchExtras extras);
コード例 #4
0
ファイル: Flickr_TagsAsync.cs プロジェクト: liquidboy/X
 /// <summary>
 /// Returns the first 24 photos for a given tag cluster.
 /// </summary>
 /// <param name="cluster">The <see cref="Cluster"/> instance to return the photos for.</param>
 /// <param name="extras">Extra information to return with each photo.</param>
 /// <param name="callback">Callback method to call upon return of the response from Flickr.</param>
 public async Task<FlickrResult<PhotoCollection>> TagsGetClusterPhotosAsync(Cluster cluster, PhotoSearchExtras extras)
 {
     return await TagsGetClusterPhotosAsync(cluster.SourceTag, cluster.ClusterId, extras);
 }
コード例 #5
0
 public PhotoCollection TagsGetClusterPhotos(Cluster cluster);