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 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230
|
using System;
using System.Xml.Serialization;
namespace FlickrNet
{
/// <summary>
/// A list of service the Flickr.Net API Supports.
/// </summary>
/// <remarks>
/// Not all methods are supported by all service. Behaviour of the library may be unpredictable if not using Flickr
/// as your service.
/// </remarks>
public enum SupportedService
{
/// <summary>
/// Flickr - http://www.flickr.com/services/api
/// </summary>
Flickr = 0,
/// <summary>
/// Zooomr - http://blog.zooomr.com/2006/03/27/attention-developers/
/// </summary>
Zooomr = 1,
/// <summary>
/// 23HQ = http://www.23hq.com/doc/api/
/// </summary>
TwentyThreeHQ = 2
}
/// <summary>
/// Used to specify where all tags must be matched or any tag to be matched.
/// </summary>
[Serializable]
public enum TagMode
{
/// <summary>
/// No tag mode specified.
/// </summary>
None,
/// <summary>
/// Any tag must match, but not all.
/// </summary>
AnyTag,
/// <summary>
/// All tags must be found.
/// </summary>
AllTags,
/// <summary>
/// Uncodumented and unsupported tag mode where boolean operators are supported.
/// </summary>
Boolean
}
/// <summary>
/// What type of content is the upload representing.
/// </summary>
[Serializable]
public enum ContentType
{
/// <summary>
/// No content type specified.
/// </summary>
None = 0,
/// <summary>
/// For normal photographs.
/// </summary>
Photo = 1,
/// <summary>
/// For screenshots.
/// </summary>
Screenshot = 2,
/// <summary>
/// For other uploads, such as artwork.
/// </summary>
Other = 3
}
/// <summary>
/// Safety level of the photographic image.
/// </summary>
[Serializable]
public enum SafetyLevel
{
/// <summary>
/// No safety level specified.
/// </summary>
None = 0,
/// <summary>
/// Very safe (suitable for a global family audience).
/// </summary>
Safe = 1,
/// <summary>
/// Moderate (the odd articstic nude is ok, but thats the limit).
/// </summary>
Moderate = 2,
/// <summary>
/// Restricted (suitable for over 18s only).
/// </summary>
Restricted = 3
}
/// <summary>
/// Determines weither the photo is visible in public searches. The default is 1, Visible.
/// </summary>
[Serializable]
public enum HiddenFromSearch
{
/// <summary>
/// No preference specified, defaults to your preferences on Flickr.
/// </summary>
None = 0,
/// <summary>
/// Photo is visible to public searches.
/// </summary>
Visible = 1,
/// <summary>
/// photo is hidden from public searches.
/// </summary>
Hidden = 2
}
/// <summary>
/// Used to specify where all tags must be matched or any tag to be matched.
/// </summary>
[Serializable]
public enum MachineTagMode
{
/// <summary>
/// No tag mode specified.
/// </summary>
None,
/// <summary>
/// Any tag must match, but not all.
/// </summary>
AnyTag,
/// <summary>
/// All tags must be found.
/// </summary>
AllTags
}
/// <summary>
/// When searching for photos you can filter on the privacy of the photos.
/// </summary>
[Serializable]
public enum PrivacyFilter
{
/// <summary>
/// Do not filter.
/// </summary>
None = 0,
/// <summary>
/// Show only public photos.
/// </summary>
PublicPhotos = 1,
/// <summary>
/// Show photos which are marked as private but viewable by friends.
/// </summary>
PrivateVisibleToFriends = 2,
/// <summary>
/// Show photos which are marked as private but viewable by family contacts.
/// </summary>
PrivateVisibleToFamily = 3,
/// <summary>
/// Show photos which are marked as private but viewable by friends and family contacts.
/// </summary>
PrivateVisibleToFriendsFamily = 4,
/// <summary>
/// Show photos which are marked as completely private.
/// </summary>
CompletelyPrivate = 5
}
/// <summary>
/// An enumeration defining who can add comments.
/// </summary>
[Serializable]
public enum PermissionComment
{
/// <summary>
/// Nobody.
/// </summary>
[XmlEnum("0")]
Nobody = 0,
/// <summary>
/// Friends and family only.
/// </summary>
[XmlEnum("1")]
FriendsAndFamily = 1,
/// <summary>
/// Contacts only.
/// </summary>
[XmlEnum("2")]
ContactsOnly = 2,
/// <summary>
/// All Flickr users.
/// </summary>
[XmlEnum("3")]
Everybody = 3
}
/// <summary>
/// An enumeration defining who can add meta data (tags and notes).
/// </summary>
public enum PermissionAddMeta
{
/// <summary>
/// The owner of the photo only.
/// </summary>
[XmlEnum("0")]
Owner = 0,
/// <summary>
/// Friends and family only.
/// </summary>
[XmlEnum("1")]
FriendsAndFamily = 1,
/// <summary>
/// All contacts.
/// </summary>
[XmlEnum("2")]
Contacts = 2,
/// <summary>
/// All Flickr users.
/// </summary>
[XmlEnum("3")]
Everybody = 3
}
}
|