~haakan/do-plugins/sshfix

« back to all changes in this revision

Viewing changes to RememberTheMilk/src/RtmNet/Enums.cs

  • Committer: Jason Smith
  • Date: 2008-12-24 04:37:17 UTC
  • mto: This revision was merged to the branch mainline in revision 337.
  • Revision ID: jassmith@gmail.com-20081224043717-9yq3uhajlmnyyg5k
Merge community into official

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
using System;
 
2
using System.Xml.Serialization;
 
3
 
 
4
namespace RtmNet
 
5
{
 
6
        /// <summary>
 
7
        /// A list of service the Rtm.Net API Supports.
 
8
        /// </summary>
 
9
        /// <remarks>
 
10
        /// Not all methods are supported by all service. Behaviour of the library may be unpredictable if not using Rtm
 
11
        /// as your service.
 
12
        /// </remarks>
 
13
        public enum SupportedService
 
14
        {
 
15
                /// <summary>
 
16
                /// Rtm - http://www.Rtm.com/services/api
 
17
                /// </summary>
 
18
                Rtm = 0
 
19
        }
 
20
        
 
21
        /// <summary>
 
22
        /// Used to specify where all tags must be matched or any tag to be matched.
 
23
        /// </summary>
 
24
        [Serializable]
 
25
        public enum TagMode
 
26
        {
 
27
                /// <summary>
 
28
                /// No tag mode specified.
 
29
                /// </summary>
 
30
                None,
 
31
                /// <summary>
 
32
                /// Any tag must match, but not all.
 
33
                /// </summary>
 
34
                AnyTag,
 
35
                /// <summary>
 
36
                /// All tags must be found.
 
37
                /// </summary>
 
38
                AllTags,
 
39
                /// <summary>
 
40
                /// Uncodumented and unsupported tag mode where boolean operators are supported.
 
41
                /// </summary>
 
42
                Boolean
 
43
        }
 
44
 
 
45
}