2002-08-06 Tim Coleman <tim@timcoleman.com>
[mono.git] / mcs / class / System.Web.Services / System.Web.Services.Discovery / ExcludePathInfo.cs
1 // \r
2 // System.Web.Services.Discovery.ExcludePathInfo.cs\r
3 //\r
4 // Author:\r
5 //   Dave Bettin (javabettin@yahoo.com)\r
6 //\r
7 // Copyright (C) Dave Bettin, 2002\r
8 //\r
9 \r
10 using System.Xml.Serialization;\r
11 \r
12 namespace System.Web.Services.Discovery {\r
13         public sealed class ExcludePathInfo {\r
14                 \r
15                 #region Fields\r
16                 \r
17                 private string path;\r
18 \r
19                 #endregion // Fields\r
20 \r
21                 #region Constructors\r
22 \r
23                 [MonoTODO]\r
24                 public ExcludePathInfo () \r
25                 {\r
26                         throw new NotImplementedException ();\r
27                 }\r
28                 \r
29                 public ExcludePathInfo (string path) : this() \r
30                 {\r
31                         throw new NotImplementedException ();\r
32                 }\r
33                 \r
34                 #endregion // Constructors\r
35 \r
36                 #region Properties\r
37                 \r
38                 [XmlAttribute("path")]\r
39                 public string Path {\r
40                         get { return path; }\r
41                         set { path = value; }\r
42                 }\r
43                 \r
44                 #endregion // Properties\r
45         }\r
46 }\r