2002-07-20 Tim Coleman <tim@timcoleman.com>
[mono.git] / mcs / class / System.Web.Services / System.Web.Services.Description / ServiceDescriptionBaseCollection.cs
1 // \r
2 // System.Web.Services.Description.ServiceDescriptionBaseCollection.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 \r
10 using System.Collections;\r
11 using System.Web.Services;\r
12 \r
13 namespace System.Web.Services.Description {\r
14         public abstract class ServiceDescriptionBaseCollection : CollectionBase {\r
15                 \r
16                 #region Fields\r
17 \r
18                 Hashtable table;\r
19 \r
20                 #endregion // Fields\r
21 \r
22                 #region Constructors\r
23         \r
24                 protected internal ServiceDescriptionBaseCollection ()\r
25                 {\r
26                         table = new Hashtable ();\r
27                 }\r
28 \r
29                 #endregion // Constructors\r
30 \r
31                 #region Properties\r
32 \r
33                 protected virtual IDictionary Table {\r
34                         get { return table; }\r
35                 }\r
36 \r
37                 #endregion // Properties\r
38 \r
39                 #region Methods\r
40 \r
41                 protected virtual string GetKey (object value) \r
42                 {\r
43                         return null; // per .NET documentation\r
44                 }\r
45 \r
46                 [MonoTODO]\r
47                 protected override void OnClear ()\r
48                 {\r
49                         throw new NotImplementedException ();\r
50                 }\r
51 \r
52                 [MonoTODO]\r
53                 protected override void OnInsertComplete (int index, object value)\r
54                 {\r
55                         throw new NotImplementedException ();\r
56                 }\r
57 \r
58                 [MonoTODO]\r
59                 protected override void OnRemove (int index, object value)\r
60                 {\r
61                         throw new NotImplementedException ();\r
62                 }\r
63 \r
64                 [MonoTODO]\r
65                 protected override void OnSet (int index, object oldValue, object newValue)\r
66                 {\r
67                         throw new NotImplementedException ();\r
68                 }\r
69 \r
70                 [MonoTODO]\r
71                 protected virtual void SetParent (object value, object parent)\r
72                 {\r
73                         throw new NotImplementedException ();\r
74                 }\r
75                         \r
76                 #endregion // Methods\r
77         }\r
78 }\r