* Mono.Posix.dll.sources: Rename Mono.Posix to Mono.Unix.
[mono.git] / mcs / class / System.Web.Services / System.Web.Services.Description / MimeTextMatch.cs
1 // \r
2 // System.Web.Services.Description.MimeTextMatch.cs\r
3 //\r
4 // Author:\r
5 //   Tim Coleman (tim@timcoleman.com)\r
6 //\r
7 // Copyright (C) Tim Coleman, 2002\r
8 //\r
9
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30 \r
31 using System.ComponentModel;\r
32 using System.Xml.Serialization;\r
33 \r
34 namespace System.Web.Services.Description {\r
35         public sealed class MimeTextMatch {\r
36 \r
37                 #region Fields\r
38 \r
39                 int capture;\r
40                 int group;\r
41                 bool ignoreCase;\r
42                 MimeTextMatchCollection matches;\r
43                 string name;\r
44                 string pattern;\r
45                 int repeats;\r
46                 string type;\r
47 \r
48                 #endregion // Fields\r
49 \r
50                 #region Constructors\r
51                 \r
52                 public MimeTextMatch ()\r
53                 {\r
54                         capture = 0;\r
55                         group = 1;\r
56                         ignoreCase = false;\r
57                         matches = null;\r
58                         name = String.Empty;\r
59                         pattern = String.Empty;\r
60                         repeats = 1;\r
61                         type = String.Empty;\r
62                 }\r
63                 \r
64                 #endregion // Constructors\r
65 \r
66                 #region Properties\r
67 \r
68                 [DefaultValue (0)]\r
69                 [XmlAttribute ("capture")]\r
70                 public int Capture {\r
71                         get { return capture; }\r
72                         set {\r
73                                 if (value < 0)\r
74                                         throw new ArgumentException ();\r
75                                 capture = value; \r
76                         }\r
77                 }\r
78         \r
79                 [DefaultValue (1)]      \r
80                 [XmlAttribute ("group")]\r
81                 public int Group {\r
82                         get { return group; }\r
83                         set {\r
84                                 if (value < 0)\r
85                                         throw new ArgumentException ();\r
86                                 group = value; \r
87                         }\r
88                 }\r
89 \r
90                 [XmlAttribute ("ignoreCase")]\r
91                 public bool IgnoreCase {\r
92                         get { return ignoreCase; }\r
93                         set { ignoreCase = value; }\r
94                 }\r
95 \r
96                 [XmlElement ("match")]\r
97                 public MimeTextMatchCollection Matches {\r
98                         get { return matches; }\r
99                 }\r
100 \r
101                 [XmlAttribute ("name")]\r
102                 public string Name {\r
103                         get { return name; }\r
104                         set { name = value; }\r
105                 }\r
106 \r
107                 [XmlAttribute ("pattern")]\r
108                 public string Pattern {\r
109                         get { return pattern; }\r
110                         set { pattern = value; }\r
111                 }\r
112 \r
113                 [XmlIgnore]\r
114                 public int Repeats {\r
115                         get { return repeats; }\r
116                         set {\r
117                                 if (value < 0)\r
118                                         throw new ArgumentException ();\r
119                                 repeats = value; \r
120                         }\r
121                 }\r
122 \r
123                 [DefaultValue ("1")]\r
124                 [XmlAttribute ("repeats")]\r
125                 public string RepeatsString {\r
126                         get { return Repeats.ToString (); }\r
127                         set { Repeats = Int32.Parse (value); }\r
128                 }\r
129 \r
130                 [XmlAttribute ("type")]\r
131                 public string Type {\r
132                         get { return type; }\r
133                         set { type = value; }\r
134                 }\r
135 \r
136                 #endregion // Properties\r
137 \r
138                 #region Methods\r
139 \r
140                 internal void SetParent (MimeTextMatchCollection matches) \r
141                 {\r
142                         this.matches = matches;\r
143                 }\r
144 \r
145                 #endregion // Methods\r
146         }\r
147 }\r