Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / Collections / DictionaryBase.cs / 1305376 / DictionaryBase.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== //------------------------------------------------------------------------------ //----------------------------------------------------------------------------- //[....] // namespace System.Collections { using System; using System.Security.Permissions; // Useful base class for typed read/write collections where items derive from object [Serializable] [System.Runtime.InteropServices.ComVisible(true)] public abstract class DictionaryBase : IDictionary { Hashtable hashtable; protected Hashtable InnerHashtable { get { if (hashtable == null) hashtable = new Hashtable(); return hashtable; } } protected IDictionary Dictionary { get { return (IDictionary) this; } } public int Count { // to avoid newing inner list if no items are ever added get { return hashtable == null ? 0 : hashtable.Count; } } bool IDictionary.IsReadOnly { get { return InnerHashtable.IsReadOnly; } } bool IDictionary.IsFixedSize { get { return InnerHashtable.IsFixedSize; } } bool ICollection.IsSynchronized { get { return InnerHashtable.IsSynchronized; } } ICollection IDictionary.Keys { get { return InnerHashtable.Keys; } } Object ICollection.SyncRoot { get { return InnerHashtable.SyncRoot; } } ICollection IDictionary.Values { get { return InnerHashtable.Values; } } public void CopyTo(Array array, int index) { InnerHashtable.CopyTo(array, index); } object IDictionary.this[object key] { get { object currentValue = InnerHashtable[key]; OnGet(key, currentValue); return currentValue; } set { OnValidate(key, value); bool keyExists = true; Object temp = InnerHashtable[key]; if( temp == null) { keyExists = InnerHashtable.Contains(key); } OnSet(key, temp, value); InnerHashtable[key] = value; try { OnSetComplete(key, temp, value); } catch { if( keyExists) { InnerHashtable[key] = temp; } else { InnerHashtable.Remove(key); } throw; } } } bool IDictionary.Contains(object key) { return InnerHashtable.Contains(key); } void IDictionary.Add(object key, object value) { OnValidate(key, value); OnInsert(key, value); InnerHashtable.Add(key, value); try { OnInsertComplete(key, value); } catch { InnerHashtable.Remove(key); throw; } } public void Clear() { OnClear(); InnerHashtable.Clear(); OnClearComplete(); } void IDictionary.Remove(object key) { if(InnerHashtable.Contains(key)) { Object temp = InnerHashtable[key]; OnValidate(key, temp); OnRemove(key, temp); InnerHashtable.Remove(key); try { OnRemoveComplete(key, temp); } catch { InnerHashtable.Add(key, temp); throw; } } } public IDictionaryEnumerator GetEnumerator() { return InnerHashtable.GetEnumerator(); } IEnumerator IEnumerable.GetEnumerator() { return InnerHashtable.GetEnumerator(); } protected virtual object OnGet(object key, object currentValue) { return currentValue; } protected virtual void OnSet(object key, object oldValue, object newValue) { } protected virtual void OnInsert(object key, object value) { } protected virtual void OnClear() { } protected virtual void OnRemove(object key, object value) { } protected virtual void OnValidate(object key, object value) { } protected virtual void OnSetComplete(object key, object oldValue, object newValue) { } protected virtual void OnInsertComplete(object key, object value) { } protected virtual void OnClearComplete() { } protected virtual void OnRemoveComplete(object key, object value) { } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== //------------------------------------------------------------------------------ //----------------------------------------------------------------------------- //[....] // namespace System.Collections { using System; using System.Security.Permissions; // Useful base class for typed read/write collections where items derive from object [Serializable] [System.Runtime.InteropServices.ComVisible(true)] public abstract class DictionaryBase : IDictionary { Hashtable hashtable; protected Hashtable InnerHashtable { get { if (hashtable == null) hashtable = new Hashtable(); return hashtable; } } protected IDictionary Dictionary { get { return (IDictionary) this; } } public int Count { // to avoid newing inner list if no items are ever added get { return hashtable == null ? 0 : hashtable.Count; } } bool IDictionary.IsReadOnly { get { return InnerHashtable.IsReadOnly; } } bool IDictionary.IsFixedSize { get { return InnerHashtable.IsFixedSize; } } bool ICollection.IsSynchronized { get { return InnerHashtable.IsSynchronized; } } ICollection IDictionary.Keys { get { return InnerHashtable.Keys; } } Object ICollection.SyncRoot { get { return InnerHashtable.SyncRoot; } } ICollection IDictionary.Values { get { return InnerHashtable.Values; } } public void CopyTo(Array array, int index) { InnerHashtable.CopyTo(array, index); } object IDictionary.this[object key] { get { object currentValue = InnerHashtable[key]; OnGet(key, currentValue); return currentValue; } set { OnValidate(key, value); bool keyExists = true; Object temp = InnerHashtable[key]; if( temp == null) { keyExists = InnerHashtable.Contains(key); } OnSet(key, temp, value); InnerHashtable[key] = value; try { OnSetComplete(key, temp, value); } catch { if( keyExists) { InnerHashtable[key] = temp; } else { InnerHashtable.Remove(key); } throw; } } } bool IDictionary.Contains(object key) { return InnerHashtable.Contains(key); } void IDictionary.Add(object key, object value) { OnValidate(key, value); OnInsert(key, value); InnerHashtable.Add(key, value); try { OnInsertComplete(key, value); } catch { InnerHashtable.Remove(key); throw; } } public void Clear() { OnClear(); InnerHashtable.Clear(); OnClearComplete(); } void IDictionary.Remove(object key) { if(InnerHashtable.Contains(key)) { Object temp = InnerHashtable[key]; OnValidate(key, temp); OnRemove(key, temp); InnerHashtable.Remove(key); try { OnRemoveComplete(key, temp); } catch { InnerHashtable.Add(key, temp); throw; } } } public IDictionaryEnumerator GetEnumerator() { return InnerHashtable.GetEnumerator(); } IEnumerator IEnumerable.GetEnumerator() { return InnerHashtable.GetEnumerator(); } protected virtual object OnGet(object key, object currentValue) { return currentValue; } protected virtual void OnSet(object key, object oldValue, object newValue) { } protected virtual void OnInsert(object key, object value) { } protected virtual void OnClear() { } protected virtual void OnRemove(object key, object value) { } protected virtual void OnValidate(object key, object value) { } protected virtual void OnSetComplete(object key, object oldValue, object newValue) { } protected virtual void OnInsertComplete(object key, object value) { } protected virtual void OnClearComplete() { } protected virtual void OnRemoveComplete(object key, object value) { } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XmlSchemaSimpleTypeRestriction.cs
- MediaElementAutomationPeer.cs
- IIS7WorkerRequest.cs
- SafeCloseHandleCritical.cs
- Exceptions.cs
- RequestReplyCorrelator.cs
- FileLoadException.cs
- ProfileService.cs
- Base64Stream.cs
- ADMembershipUser.cs
- StateDesignerConnector.cs
- FileSystemEnumerable.cs
- AmbientLight.cs
- StateWorkerRequest.cs
- RuleAction.cs
- DocumentStatusResources.cs
- SqlCommand.cs
- TableAdapterManagerGenerator.cs
- UpdateDelegates.Generated.cs
- PropertyItem.cs
- ConcurrentQueue.cs
- WorkflowCreationContext.cs
- PresentationAppDomainManager.cs
- InstanceDataCollection.cs
- SQLGuid.cs
- DataGridViewSelectedRowCollection.cs
- DataSetSchema.cs
- BamlLocalizabilityResolver.cs
- WindowsRichEditRange.cs
- TaskFileService.cs
- SafeNativeMethods.cs
- WebBrowserContainer.cs
- InputScope.cs
- EntitySqlException.cs
- VirtualPathUtility.cs
- UrlMapping.cs
- ResourceAssociationSetEnd.cs
- ObjectDataSourceWizardForm.cs
- Duration.cs
- OracleLob.cs
- DbTransaction.cs
- BamlResourceSerializer.cs
- shaperfactoryquerycacheentry.cs
- TokenDescriptor.cs
- TagPrefixAttribute.cs
- ReadOnlyAttribute.cs
- ConfigXmlSignificantWhitespace.cs
- ApplicationSecurityInfo.cs
- GridViewCellAutomationPeer.cs
- TraceSource.cs
- PageContent.cs
- TextRangeEdit.cs
- SymbolEqualComparer.cs
- HotSpotCollectionEditor.cs
- StorageAssociationTypeMapping.cs
- Identity.cs
- NamespaceDecl.cs
- Int16.cs
- OdbcError.cs
- WorkflowMarkupElementEventArgs.cs
- ToolStripLabel.cs
- Convert.cs
- CheckBoxPopupAdapter.cs
- RectConverter.cs
- RequiredFieldValidator.cs
- BinaryConverter.cs
- SafeThreadHandle.cs
- LocalizableResourceBuilder.cs
- DESCryptoServiceProvider.cs
- ProfileInfo.cs
- AttributeParameterInfo.cs
- ColorContextHelper.cs
- ResourceType.cs
- WebServicesInteroperability.cs
- Quaternion.cs
- UnitySerializationHolder.cs
- FormParameter.cs
- BlurBitmapEffect.cs
- TextBoxBase.cs
- BinaryObjectWriter.cs
- SchemaComplexType.cs
- Vector3DAnimationUsingKeyFrames.cs
- AsyncResult.cs
- CultureData.cs
- ScrollItemProviderWrapper.cs
- SchemaEntity.cs
- MetricEntry.cs
- FusionWrap.cs
- Bits.cs
- Parallel.cs
- PropagatorResult.cs
- EventHandlersDesigner.cs
- HandlerFactoryCache.cs
- BitmapMetadataEnumerator.cs
- StreamGeometryContext.cs
- ResourceReader.cs
- Hashtable.cs
- Operator.cs
- GetMemberBinder.cs
- BamlBinaryReader.cs