2010-05-27 Jb Evain <jbevain@novell.com>
[mcs.git] / class / corlib / System.Runtime.Remoting.Channels / BaseChannelObjectWithProperties.cs
blobdbf759cc43ffe28bfdaa3af08611d78089b75c2c
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 [System.Runtime.InteropServices.ComVisible (true)]
39 public abstract class BaseChannelObjectWithProperties :
40 IDictionary, ICollection, IEnumerable
42 Hashtable table;
44 protected BaseChannelObjectWithProperties ()
46 table = new Hashtable ();
49 public virtual int Count
51 get { return table.Count; }
54 public virtual bool IsFixedSize
56 get { return true; }
59 public virtual bool IsReadOnly
61 get { return false; }
64 public virtual bool IsSynchronized
66 get { return false; }
70 // This is explicitly not implemented.
72 public virtual object this [object key]
74 get { throw new NotImplementedException (); }
75 set { throw new NotImplementedException (); }
78 public virtual ICollection Keys
80 get { return table.Keys; }
83 public virtual IDictionary Properties
85 get { return this as IDictionary; }
88 public virtual object SyncRoot
90 get { return this; }
93 public virtual ICollection Values
95 get { return table.Values; }
98 public virtual void Add (object key, object value)
100 // .NET says this method must not implemented
101 throw new NotSupportedException ();
104 public virtual void Clear ()
106 // .NET says this method must not implemented
107 throw new NotSupportedException ();
110 public virtual bool Contains (object key)
112 return table.Contains (key);
115 public virtual void CopyTo (Array array, int index)
117 // .NET says this method must not implemented
118 throw new NotSupportedException ();
121 public virtual IDictionaryEnumerator GetEnumerator ()
123 return table.GetEnumerator ();
126 IEnumerator IEnumerable.GetEnumerator ()
128 return table.GetEnumerator ();
131 public virtual void Remove (object key)
133 // .NET says this method must not implemented
134 throw new NotSupportedException ();