Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / CompMod / System / Collections / Specialized / StringDictionary.cs / 1 / StringDictionary.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Collections.Specialized { using System.Runtime.InteropServices; using System.Diagnostics; using System; using System.Collections; using System.ComponentModel.Design.Serialization; using System.Globalization; ////// [Serializable] [DesignerSerializer("System.Diagnostics.Design.StringDictionaryCodeDomSerializer, " + AssemblyRef.SystemDesign, "System.ComponentModel.Design.Serialization.CodeDomSerializer, " + AssemblyRef.SystemDesign)] public class StringDictionary : IEnumerable { internal Hashtable contents = new Hashtable(); ///Implements a hashtable with the key strongly typed to be /// a string rather than an object. ////// public StringDictionary() { } ///Initializes a new instance of the System.Windows.Forms.StringDictionary class. ////// public virtual int Count { get { return contents.Count; } } ///Gets the number of key-and-value pairs in the System.Windows.Forms.StringDictionary. ////// public virtual bool IsSynchronized { get { return contents.IsSynchronized; } } ///Indicates whether access to the System.Windows.Forms.StringDictionary is synchronized (thread-safe). This property is /// read-only. ////// public virtual string this[string key] { get { if( key == null ) { throw new ArgumentNullException("key"); } return (string) contents[key.ToLower(CultureInfo.InvariantCulture)]; } set { if( key == null ) { throw new ArgumentNullException("key"); } contents[key.ToLower(CultureInfo.InvariantCulture)] = value; } } ///Gets or sets the value associated with the specified key. ////// public virtual ICollection Keys { get { return contents.Keys; } } ///Gets a collection of keys in the System.Windows.Forms.StringDictionary. ////// public virtual object SyncRoot { get { return contents.SyncRoot; } } ///Gets an object that can be used to synchronize access to the System.Windows.Forms.StringDictionary. ////// public virtual ICollection Values { get { return contents.Values; } } ///Gets a collection of values in the System.Windows.Forms.StringDictionary. ////// public virtual void Add(string key, string value) { if( key == null ) { throw new ArgumentNullException("key"); } contents.Add(key.ToLower(CultureInfo.InvariantCulture), value); } ///Adds an entry with the specified key and value into the System.Windows.Forms.StringDictionary. ////// public virtual void Clear() { contents.Clear(); } ///Removes all entries from the System.Windows.Forms.StringDictionary. ////// public virtual bool ContainsKey(string key) { if( key == null ) { throw new ArgumentNullException("key"); } return contents.ContainsKey(key.ToLower(CultureInfo.InvariantCulture)); } ///Determines if the string dictionary contains a specific key ////// public virtual bool ContainsValue(string value) { return contents.ContainsValue(value); } ///Determines if the System.Windows.Forms.StringDictionary contains a specific value. ////// public virtual void CopyTo(Array array, int index) { contents.CopyTo(array, index); } ///Copies the string dictionary values to a one-dimensional ///instance at the /// specified index. /// public virtual IEnumerator GetEnumerator() { return contents.GetEnumerator(); } ///Returns an enumerator that can iterate through the string dictionary. ////// public virtual void Remove(string key) { if( key == null ) { throw new ArgumentNullException("key"); } contents.Remove(key.ToLower(CultureInfo.InvariantCulture)); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //Removes the entry with the specified key from the string dictionary. ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Collections.Specialized { using System.Runtime.InteropServices; using System.Diagnostics; using System; using System.Collections; using System.ComponentModel.Design.Serialization; using System.Globalization; ////// [Serializable] [DesignerSerializer("System.Diagnostics.Design.StringDictionaryCodeDomSerializer, " + AssemblyRef.SystemDesign, "System.ComponentModel.Design.Serialization.CodeDomSerializer, " + AssemblyRef.SystemDesign)] public class StringDictionary : IEnumerable { internal Hashtable contents = new Hashtable(); ///Implements a hashtable with the key strongly typed to be /// a string rather than an object. ////// public StringDictionary() { } ///Initializes a new instance of the System.Windows.Forms.StringDictionary class. ////// public virtual int Count { get { return contents.Count; } } ///Gets the number of key-and-value pairs in the System.Windows.Forms.StringDictionary. ////// public virtual bool IsSynchronized { get { return contents.IsSynchronized; } } ///Indicates whether access to the System.Windows.Forms.StringDictionary is synchronized (thread-safe). This property is /// read-only. ////// public virtual string this[string key] { get { if( key == null ) { throw new ArgumentNullException("key"); } return (string) contents[key.ToLower(CultureInfo.InvariantCulture)]; } set { if( key == null ) { throw new ArgumentNullException("key"); } contents[key.ToLower(CultureInfo.InvariantCulture)] = value; } } ///Gets or sets the value associated with the specified key. ////// public virtual ICollection Keys { get { return contents.Keys; } } ///Gets a collection of keys in the System.Windows.Forms.StringDictionary. ////// public virtual object SyncRoot { get { return contents.SyncRoot; } } ///Gets an object that can be used to synchronize access to the System.Windows.Forms.StringDictionary. ////// public virtual ICollection Values { get { return contents.Values; } } ///Gets a collection of values in the System.Windows.Forms.StringDictionary. ////// public virtual void Add(string key, string value) { if( key == null ) { throw new ArgumentNullException("key"); } contents.Add(key.ToLower(CultureInfo.InvariantCulture), value); } ///Adds an entry with the specified key and value into the System.Windows.Forms.StringDictionary. ////// public virtual void Clear() { contents.Clear(); } ///Removes all entries from the System.Windows.Forms.StringDictionary. ////// public virtual bool ContainsKey(string key) { if( key == null ) { throw new ArgumentNullException("key"); } return contents.ContainsKey(key.ToLower(CultureInfo.InvariantCulture)); } ///Determines if the string dictionary contains a specific key ////// public virtual bool ContainsValue(string value) { return contents.ContainsValue(value); } ///Determines if the System.Windows.Forms.StringDictionary contains a specific value. ////// public virtual void CopyTo(Array array, int index) { contents.CopyTo(array, index); } ///Copies the string dictionary values to a one-dimensional ///instance at the /// specified index. /// public virtual IEnumerator GetEnumerator() { return contents.GetEnumerator(); } ///Returns an enumerator that can iterate through the string dictionary. ////// public virtual void Remove(string key) { if( key == null ) { throw new ArgumentNullException("key"); } contents.Remove(key.ToLower(CultureInfo.InvariantCulture)); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.Removes the entry with the specified key from the string dictionary. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- IsolatedStoragePermission.cs
- WebResponse.cs
- TreeNodeEventArgs.cs
- StylusTip.cs
- AssertSection.cs
- EmptyEnumerable.cs
- DBDataPermissionAttribute.cs
- AuthorizationPolicyTypeElementCollection.cs
- HashHelper.cs
- SettingsAttributes.cs
- OperatingSystem.cs
- IntranetCredentialPolicy.cs
- DataGridLength.cs
- DiagnosticTrace.cs
- WrappedKeySecurityToken.cs
- FormsIdentity.cs
- StylusDevice.cs
- FamilyCollection.cs
- HtmlImageAdapter.cs
- While.cs
- ChineseLunisolarCalendar.cs
- DocumentStatusResources.cs
- AdornerHitTestResult.cs
- ExpressionSelection.cs
- Registration.cs
- FactoryRecord.cs
- NullableDoubleSumAggregationOperator.cs
- DataColumnChangeEvent.cs
- ConfigurationValues.cs
- RegisteredScript.cs
- ELinqQueryState.cs
- DependencyPropertyDescriptor.cs
- StaticSiteMapProvider.cs
- UnsafeNativeMethods.cs
- DoubleCollectionConverter.cs
- XmlSerializableServices.cs
- XslCompiledTransform.cs
- SoapException.cs
- OleDbCommandBuilder.cs
- XsltLibrary.cs
- UriTemplatePathPartiallyEquivalentSet.cs
- RtfToken.cs
- SerialReceived.cs
- IncrementalReadDecoders.cs
- DataSourceExpressionCollection.cs
- EtwTrace.cs
- ListDictionary.cs
- Tag.cs
- XPathNode.cs
- SafeEventLogWriteHandle.cs
- UpdateTranslator.cs
- SerializeAbsoluteContext.cs
- ObjectKeyFrameCollection.cs
- NextPreviousPagerField.cs
- DelegateArgumentValue.cs
- EventlogProvider.cs
- COM2EnumConverter.cs
- Int32Storage.cs
- ToolStripDropDown.cs
- PaperSource.cs
- SqlUdtInfo.cs
- MenuItemBindingCollection.cs
- Evidence.cs
- BoolExpr.cs
- RootAction.cs
- DataSourceProvider.cs
- DataServices.cs
- SecurityPermission.cs
- WebPartHelpVerb.cs
- Properties.cs
- ProxyHwnd.cs
- NativeMethods.cs
- EnvironmentPermission.cs
- Cursor.cs
- ConditionalDesigner.cs
- PeerHelpers.cs
- DataSetViewSchema.cs
- remotingproxy.cs
- ZipFileInfo.cs
- DesignBindingPicker.cs
- PersianCalendar.cs
- RepeaterItemEventArgs.cs
- SmiXetterAccessMap.cs
- WebPartCollection.cs
- DataSourceCache.cs
- ITreeGenerator.cs
- DataGridView.cs
- EntitySqlException.cs
- bidPrivateBase.cs
- precedingsibling.cs
- SafeBitVector32.cs
- MSAAEventDispatcher.cs
- Condition.cs
- CommentEmitter.cs
- ContextQuery.cs
- DtdParser.cs
- PropertyNames.cs
- IndexOutOfRangeException.cs
- SoapServerProtocol.cs
- BaseHashHelper.cs