| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- //
- // System.Collections.Specialized.StringDictionary.cs
- //
- // Author:
- // Andreas Nahr ([email protected])
- //
- // (C) Ximian, Inc. http://www.ximian.com
- //
- using System.ComponentModel.Design.Serialization;
- namespace System.Collections.Specialized
- {
- [DesignerSerializer ("System.Diagnostics.Design.StringDictionaryCodeDomSerializer, " + Consts.AssemblySystem_Design, "System.ComponentModel.Design.Serialization.CodeDomSerializer, " + Consts.AssemblySystem_Design)]
- public class StringDictionary : IEnumerable
- {
- private Hashtable table;
-
- public StringDictionary()
- {
- table = new Hashtable();
- }
-
- // Public Instance Properties
-
- public virtual int Count
- {
- get {
- return table.Count;
- }
- }
-
- public virtual bool IsSynchronized
- {
- get {
- return false;
- }
- }
-
- public virtual string this[string key]
- {
- get {
- return (string) table[key.ToLower()];
- }
-
- set {
- table[key.ToLower()] = value;
- }
- }
-
- public virtual ICollection Keys
- {
- get {
- return table.Keys;
- }
- }
-
- public virtual ICollection Values
- {
- get {
- return table.Values;
- }
- }
-
- public virtual object SyncRoot
- {
- get {
- return table.SyncRoot;
- }
- }
-
- // Public Instance Methods
-
- public virtual void Add(string key, string value)
- {
- table.Add(key.ToLower(), value);
- }
-
- public virtual void Clear()
- {
- table.Clear();
- }
-
- public virtual bool ContainsKey(string key)
- {
- return table.ContainsKey(key.ToLower());
- }
-
- public virtual bool ContainsValue(string value)
- {
- return table.ContainsValue(value);
- }
-
- public virtual void CopyTo(Array array, int index)
- {
- table.CopyTo(array, index);
- }
-
- public virtual IEnumerator GetEnumerator()
- {
- return table.GetEnumerator();
- }
-
- public virtual void Remove(string key)
- {
- table.Remove(key.ToLower());
- }
- }
- }
|