Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / Collections / Specialized / StringDictionary.cs / 1305376 / 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 { // For compatibility, we want the Keys property to return values in lower-case. // That means using ToLower in each property on this type. Also for backwards // compatibility, we will be converting strings to lower-case, which has a // problem for some Georgian alphabets. Can't really fix it now though... internal Hashtable contents = new Hashtable(); ///Implements a hashtable with the key strongly typed to be /// a string rather than an object. ///Consider this class obsolete - use Dictionary<String, String> instead /// with a proper StringComparer instance. ////// public StringDictionary() { } ///Initializes a new instance of the StringDictionary class. ///If you're using file names, registry keys, etc, you want to use /// a Dictionary<String, Object> and use /// StringComparer.OrdinalIgnoreCase. ////// public virtual int Count { get { return contents.Count; } } ///Gets the number of key-and-value pairs in the StringDictionary. ////// public virtual bool IsSynchronized { get { return contents.IsSynchronized; } } ///Indicates whether access to the 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 StringDictionary. ////// public virtual object SyncRoot { get { return contents.SyncRoot; } } ///Gets an object that can be used to synchronize access to the StringDictionary. ////// public virtual ICollection Values { get { return contents.Values; } } ///Gets a collection of values in the 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 StringDictionary. ////// public virtual void Clear() { contents.Clear(); } ///Removes all entries from the 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 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)); } ///Removes the entry with the specified key from the string dictionary. ////// Make this StringDictionary subservient to some other collection. /// /// Replaces the backing store with another, possibly aliased Hashtable. internal void ReplaceHashtable(Hashtable useThisHashtableInstead) { contents = useThisHashtableInstead; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.Some code was replacing the contents field with a Hashtable created elsewhere. /// While it may not have been incorrect, we don't want to encourage that pattern, because /// it will replace the IEqualityComparer in the Hashtable, and creates a possibly-undesirable /// link between two seemingly different collections. Let's discourage that somewhat by /// making this an explicit method call instead of an internal field assignment. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ViewBase.cs
- HtmlTableCell.cs
- DataFieldEditor.cs
- PartDesigner.cs
- DataTable.cs
- Literal.cs
- ConfigXmlCDataSection.cs
- ReturnValue.cs
- ErrorHandler.cs
- _DisconnectOverlappedAsyncResult.cs
- DecoderBestFitFallback.cs
- ConnectionManager.cs
- SendMailErrorEventArgs.cs
- CompilerError.cs
- ListDictionaryInternal.cs
- CellParaClient.cs
- HttpModuleActionCollection.cs
- DecimalMinMaxAggregationOperator.cs
- Script.cs
- SelectionPattern.cs
- PenLineJoinValidation.cs
- WindowHideOrCloseTracker.cs
- ToolStripDropDownMenu.cs
- RealizationContext.cs
- ListBox.cs
- PresentationTraceSources.cs
- ExecutionEngineException.cs
- Variant.cs
- Run.cs
- StackBuilderSink.cs
- Util.cs
- NaturalLanguageHyphenator.cs
- Mutex.cs
- ParallelTimeline.cs
- RepeatInfo.cs
- XmlReaderSettings.cs
- OutputCacheProfile.cs
- OverlappedAsyncResult.cs
- IisTraceWebEventProvider.cs
- IDispatchConstantAttribute.cs
- DataBindingValueUIHandler.cs
- IntSecurity.cs
- MulticastDelegate.cs
- DllNotFoundException.cs
- SqlWebEventProvider.cs
- UxThemeWrapper.cs
- ComponentDispatcherThread.cs
- RolePrincipal.cs
- Binding.cs
- ImageCodecInfo.cs
- ErrorView.xaml.cs
- SymbolEqualComparer.cs
- SelectingProviderEventArgs.cs
- OleDbPermission.cs
- LocatorBase.cs
- DesignerTextWriter.cs
- Set.cs
- Binding.cs
- DecoderFallbackWithFailureFlag.cs
- IISMapPath.cs
- SynchronizationContext.cs
- Pair.cs
- MultipleViewPattern.cs
- UIInitializationException.cs
- Crc32.cs
- MissingManifestResourceException.cs
- EntityDataSourceView.cs
- MissingFieldException.cs
- ClientConfigurationSystem.cs
- CatchBlock.cs
- FreeFormPanel.cs
- CheckoutException.cs
- RowUpdatingEventArgs.cs
- TimeoutValidationAttribute.cs
- HttpModule.cs
- OptimisticConcurrencyException.cs
- ApplicationBuildProvider.cs
- EventsTab.cs
- DataGridViewCheckBoxColumn.cs
- ColorBlend.cs
- OledbConnectionStringbuilder.cs
- PeerCustomResolverBindingElement.cs
- OneToOneMappingSerializer.cs
- X509Extension.cs
- QueryTreeBuilder.cs
- WebPartDisplayModeCancelEventArgs.cs
- SoapReflectionImporter.cs
- TextViewSelectionProcessor.cs
- PathGeometry.cs
- DbProviderSpecificTypePropertyAttribute.cs
- Token.cs
- ArrayItemReference.cs
- SubpageParagraph.cs
- WebHttpBehavior.cs
- UnauthorizedWebPart.cs
- CodeComment.cs
- TrailingSpaceComparer.cs
- TCPListener.cs
- ClientScriptItem.cs
- Color.cs