Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / ParsedAttributeCollection.cs / 1 / ParsedAttributeCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System; using System.Collections; using System.Collections.Specialized; using System.Globalization; using System.Web.Util; ////// Contains parsed attributes organized by filter. /// The IDictionary implementation uses the combination of all filters using filter:attrName as the attribute names /// internal sealed class ParsedAttributeCollection : IDictionary { private IDictionary _filterTable; private IDictionary _allFiltersDictionary; internal ParsedAttributeCollection() { _filterTable = new ListDictionary(StringComparer.OrdinalIgnoreCase); } ////// Returns the combination of all filters using filter:attrName as the attribute names /// private IDictionary AllFiltersDictionary { get { if (_allFiltersDictionary == null) { _allFiltersDictionary = new ListDictionary(StringComparer.OrdinalIgnoreCase); foreach (FilteredAttributeDictionary fac in _filterTable.Values) { foreach (DictionaryEntry entry in fac) { Debug.Assert(entry.Key != null); _allFiltersDictionary[Util.CreateFilteredName(fac.Filter, entry.Key.ToString())] = entry.Value; } } } return _allFiltersDictionary; } } ////// Adds a filtered attribute /// public void AddFilteredAttribute(string filter, string name, string value) { if (String.IsNullOrEmpty(name)) { throw ExceptionUtil.ParameterNullOrEmpty("name"); } if (value == null) { throw new ArgumentNullException("value"); } if (filter == null) { filter = String.Empty; } if (_allFiltersDictionary != null) { _allFiltersDictionary.Add(Util.CreateFilteredName(filter, name), value); } FilteredAttributeDictionary filteredAttributes = (FilteredAttributeDictionary)_filterTable[filter]; if (filteredAttributes == null) { filteredAttributes = new FilteredAttributeDictionary(this, filter); _filterTable[filter] = filteredAttributes; } filteredAttributes.Data.Add(name, value); } ////// Clears all attributes from the specified filter /// public void ClearFilter(string filter) { if (filter == null) { filter = String.Empty; } if (_allFiltersDictionary != null) { ArrayList removeList = new ArrayList(); foreach (string key in _allFiltersDictionary.Keys) { string attrName; string currentFilter = Util.ParsePropertyDeviceFilter(key, out attrName); if (StringUtil.EqualsIgnoreCase(currentFilter, filter)) { removeList.Add(key); } } foreach (string key in removeList) { _allFiltersDictionary.Remove(key); } } _filterTable.Remove(filter); } ////// Gets the collection of FilteredAttributeDictionaries used by this collection. /// public ICollection GetFilteredAttributeDictionaries() { return _filterTable.Values; } ////// Removes the specified attribute from the specified filter. /// public void RemoveFilteredAttribute(string filter, string name) { if (String.IsNullOrEmpty(name)) { throw ExceptionUtil.ParameterNullOrEmpty("name"); } if (filter == null) { filter = String.Empty; } if (_allFiltersDictionary != null) { _allFiltersDictionary.Remove(Util.CreateFilteredName(filter, name)); } FilteredAttributeDictionary filteredAttributes = (FilteredAttributeDictionary)_filterTable[filter]; if (filteredAttributes != null) { filteredAttributes.Data.Remove(name); } } ////// Replaces the specified attribute's value from the specified filter. /// public void ReplaceFilteredAttribute(string filter, string name, string value) { if (String.IsNullOrEmpty(name)) { throw ExceptionUtil.ParameterNullOrEmpty("name"); } if (filter == null) { filter = String.Empty; } if (_allFiltersDictionary != null) { _allFiltersDictionary[Util.CreateFilteredName(filter, name)] = value; } FilteredAttributeDictionary filteredAttributes = (FilteredAttributeDictionary)_filterTable[filter]; if (filteredAttributes == null) { filteredAttributes = new FilteredAttributeDictionary(this, filter); _filterTable[filter] = filteredAttributes; } filteredAttributes.Data[name] = value; } #region IDictionary implementation ///bool IDictionary.IsFixedSize { get { return false; } } /// bool IDictionary.IsReadOnly { get { return false; } } /// object IDictionary.this[object key] { get { return AllFiltersDictionary[key]; } set { if (key == null) { throw new ArgumentNullException("key"); } string attrName; string filter = Util.ParsePropertyDeviceFilter(key.ToString(), out attrName); ReplaceFilteredAttribute(filter, attrName, value.ToString()); } } /// ICollection IDictionary.Keys { get { return AllFiltersDictionary.Keys; } } /// ICollection IDictionary.Values { get { return AllFiltersDictionary.Values; } } /// void IDictionary.Add(object key, object value) { if (key == null) { throw new ArgumentNullException("key"); } if (value == null) { value = String.Empty; } string attrName; string filter = Util.ParsePropertyDeviceFilter(key.ToString(), out attrName); AddFilteredAttribute(filter, attrName, value.ToString()); } /// bool IDictionary.Contains(object key) { return AllFiltersDictionary.Contains(key); } /// void IDictionary.Clear() { AllFiltersDictionary.Clear(); _filterTable.Clear(); } /// IDictionaryEnumerator IDictionary.GetEnumerator() { return AllFiltersDictionary.GetEnumerator(); } /// void IDictionary.Remove(object key) { if (key == null) { throw new ArgumentNullException("key"); } string attrName; string filter = Util.ParsePropertyDeviceFilter(key.ToString(), out attrName); RemoveFilteredAttribute(filter, attrName); } #endregion IDictionary implementation #region ICollection implementation /// int ICollection.Count { get { return AllFiltersDictionary.Count; } } /// bool ICollection.IsSynchronized { get { return ((ICollection)AllFiltersDictionary).IsSynchronized; } } /// object ICollection.SyncRoot { get { return AllFiltersDictionary.SyncRoot; } } /// void ICollection.CopyTo(Array array, int index) { AllFiltersDictionary.CopyTo(array, index); } /// IEnumerator IEnumerable.GetEnumerator() { return AllFiltersDictionary.GetEnumerator(); } #endregion ICollection implementation } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- KeyGesture.cs
- ProvideValueServiceProvider.cs
- DocumentApplication.cs
- DataObjectMethodAttribute.cs
- SqlCacheDependency.cs
- WebPageTraceListener.cs
- FrameworkContextData.cs
- UnsafeNativeMethods.cs
- PackWebRequestFactory.cs
- TransactionTraceIdentifier.cs
- HostSecurityManager.cs
- ActionMessageFilter.cs
- DriveNotFoundException.cs
- BuildManagerHost.cs
- RoutingChannelExtension.cs
- ResourceReferenceExpressionConverter.cs
- ModelItemDictionaryImpl.cs
- MimeXmlImporter.cs
- GcHandle.cs
- IQueryable.cs
- HandlerMappingMemo.cs
- ProxyRpc.cs
- KeyFrames.cs
- RootBuilder.cs
- PageAsyncTaskManager.cs
- StringTraceRecord.cs
- WindowsMenu.cs
- CodeExporter.cs
- BoolLiteral.cs
- ModuleElement.cs
- ButtonBase.cs
- SelectionProcessor.cs
- Italic.cs
- SessionSwitchEventArgs.cs
- EntityDataSource.cs
- ImageSource.cs
- AsyncOperationManager.cs
- ClockController.cs
- PolyBezierSegmentFigureLogic.cs
- _NestedMultipleAsyncResult.cs
- ExitEventArgs.cs
- SizeConverter.cs
- WindowExtensionMethods.cs
- DocumentXPathNavigator.cs
- RoutedEventArgs.cs
- Trigger.cs
- While.cs
- ListViewUpdatedEventArgs.cs
- Int32RectValueSerializer.cs
- IMembershipProvider.cs
- AddInServer.cs
- PropertyManager.cs
- AnimationStorage.cs
- WebConfigurationFileMap.cs
- OleDbException.cs
- UserControlCodeDomTreeGenerator.cs
- VerificationAttribute.cs
- Vector.cs
- TextBoxBase.cs
- ChtmlPageAdapter.cs
- ListItemParagraph.cs
- QueryPageSettingsEventArgs.cs
- Boolean.cs
- HttpConfigurationSystem.cs
- WindowsRichEditRange.cs
- SafeNativeMethods.cs
- CachedTypeface.cs
- Base64Encoder.cs
- PermissionSetEnumerator.cs
- NumberFunctions.cs
- Trigger.cs
- RangeValuePattern.cs
- Hash.cs
- ObjectQuery.cs
- OleDbConnection.cs
- ContainerParaClient.cs
- HttpConfigurationSystem.cs
- TextSearch.cs
- FontWeightConverter.cs
- DataRecordInternal.cs
- CookielessHelper.cs
- XPathDocument.cs
- SqlGatherProducedAliases.cs
- DataGridViewCellStyleChangedEventArgs.cs
- InternalSafeNativeMethods.cs
- DesignerAttribute.cs
- MetricEntry.cs
- PhysicalFontFamily.cs
- SuppressMessageAttribute.cs
- Buffer.cs
- BitmapEffectCollection.cs
- SafeFindHandle.cs
- HelpProvider.cs
- SizeConverter.cs
- handlecollector.cs
- SqlBooleanMismatchVisitor.cs
- AccessDataSource.cs
- DataContractJsonSerializer.cs
- SourceInterpreter.cs
- PictureBox.cs