1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
using System;
namespace FlickrNet
{
/// <summary>
/// The sort order for the <see cref="Flickr.PhotosSearch(PhotoSearchOptions)"/>,
/// <see cref="Flickr.PhotosGetWithGeoData()"/>, <see cref="Flickr.PhotosGetWithoutGeoData()"/> methods.
/// </summary>
[Serializable]
public enum PhotoSearchSortOrder
{
/// <summary>
/// No sort order.
/// </summary>
None,
/// <summary>
/// Sort by date uploaded (posted).
/// </summary>
DatePostedAsc,
/// <summary>
/// Sort by date uploaded (posted) in descending order.
/// </summary>
DatePostedDesc,
/// <summary>
/// Sort by date taken.
/// </summary>
DateTakenAsc,
/// <summary>
/// Sort by date taken in descending order.
/// </summary>
DateTakenDesc,
/// <summary>
/// Sort by interestingness.
/// </summary>
InterestingnessAsc,
/// <summary>
/// Sort by interestingness in descending order.
/// </summary>
InterestingnessDesc,
/// <summary>
/// Sort by relevance
/// </summary>
Relevance
}
}
|