(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / corlib / System.Runtime.Remoting.Channels / BaseChannelObjectWithProperties.cs
blob256b9a859735a9ba9e119e52189785647d46e2c1
1 //
2 // System.Runtime.Remoting.Channels.BaseChannelObjectWithProperties.cs
3 //
4 // Author: Rodrigo Moya (rodrigo@ximian.com)
5 // Duncan Mak (duncan@ximian.com)
6 //
7 // 2002 (C) Copyright, Ximian, Inc.
8 //
11 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
13 // Permission is hereby granted, free of charge, to any person obtaining
14 // a copy of this software and associated documentation files (the
15 // "Software"), to deal in the Software without restriction, including
16 // without limitation the rights to use, copy, modify, merge, publish,
17 // distribute, sublicense, and/or sell copies of the Software, and to
18 // permit persons to whom the Software is furnished to do so, subject to
19 // the following conditions:
20 //
21 // The above copyright notice and this permission notice shall be
22 // included in all copies or substantial portions of the Software.
23 //
24 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
28 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
29 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
30 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
33 using System.Collections;
35 namespace System.Runtime.Remoting.Channels
38 public abstract class BaseChannelObjectWithProperties :
39 IDictionary, ICollection, IEnumerable
41 Hashtable table;
43 public BaseChannelObjectWithProperties ()
45 table = new Hashtable ();
48 public virtual int Count
50 get { return table.Count; }
53 public virtual bool IsFixedSize
55 get { return true; }
58 public virtual bool IsReadOnly
60 get { return false; }
63 public virtual bool IsSynchronized
65 get { return false; }
69 // This is explicitly not implemented.
71 public virtual object this [object key]
73 get { throw new NotImplementedException (); }
74 set { throw new NotImplementedException (); }
77 public virtual ICollection Keys
79 get { return table.Keys; }
82 public virtual IDictionary Properties
84 get { return this as IDictionary; }
87 public virtual object SyncRoot
89 get { return this; }
92 public virtual ICollection Values
94 get { return table.Values; }
97 public virtual void Add (object key, object value)
99 // .NET says this method must not implemented
100 throw new NotSupportedException ();
103 public virtual void Clear ()
105 // .NET says this method must not implemented
106 throw new NotSupportedException ();
109 public virtual bool Contains (object key)
111 return table.Contains (key);
114 public virtual void CopyTo (Array array, int index)
116 // .NET says this method must not implemented
117 throw new NotSupportedException ();
120 public virtual IDictionaryEnumerator GetEnumerator ()
122 return table.GetEnumerator ();
125 IEnumerator IEnumerable.GetEnumerator ()
127 return table.GetEnumerator ();
130 public virtual void Remove (object key)
132 // .NET says this method must not implemented
133 throw new NotSupportedException ();