o Added atributes and some basic implementation
[mono.git] / mcs / class / System.Web.Services / System.Web.Services.Discovery / DiscoveryClientDocumentCollection.cs
1 // \r
2 // System.Web.Services.Discovery.DiscoveryClientDocumentCollection.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.Collections;\r
11 \r
12 namespace System.Web.Services.Discovery {\r
13 \r
14         public sealed class DiscoveryClientDocumentCollection : DictionaryBase {\r
15 \r
16                 #region Constructors \r
17 \r
18                 [MonoTODO]\r
19                 public DiscoveryClientDocumentCollection () \r
20                 {\r
21                         throw new NotImplementedException ();\r
22                 }\r
23                 \r
24                 #endregion // Constructors\r
25 \r
26                 #region Properties\r
27 \r
28                 public object this[string url] {\r
29                         [MonoTODO]\r
30                         get { throw new NotImplementedException (); }\r
31                         \r
32                         [MonoTODO]\r
33                         set { throw new NotImplementedException (); }\r
34                 }\r
35                 \r
36                 public ICollection Keys {\r
37                         [MonoTODO]\r
38                         get { throw new NotImplementedException (); }\r
39                 }\r
40                 \r
41                 public ICollection Values {\r
42                         [MonoTODO]\r
43                         get { throw new NotImplementedException (); }\r
44                 }\r
45                 \r
46                 #endregion // Properties\r
47 \r
48                 #region Methods\r
49 \r
50                 [MonoTODO]\r
51                 public void Add (string url, object value)\r
52                 {\r
53                         throw new NotImplementedException ();\r
54                 }\r
55 \r
56                 [MonoTODO]\r
57                 public bool Contains (string url)\r
58                 {\r
59                         throw new NotImplementedException ();\r
60                 }\r
61                 \r
62                 [MonoTODO]\r
63                 public void Remove (string url)\r
64                 {\r
65                         throw new NotImplementedException ();\r
66                 }\r
67 \r
68                 #endregion // Methods\r
69         }\r
70 }