Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / ExpressionBindingCollection.cs / 1 / ExpressionBindingCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System; using System.Collections; using System.Collections.Specialized; using System.ComponentModel; using System.ComponentModel.Design; using System.Data; using System.Web.Util; using System.Security.Permissions; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class ExpressionBindingCollection : ICollection { private EventHandler changedEvent; private Hashtable bindings; private Hashtable removedBindings; ////// public ExpressionBindingCollection() { this.bindings = new Hashtable(StringComparer.OrdinalIgnoreCase); } ////// public int Count { get { return bindings.Count; } } ////// public bool IsReadOnly { get { return false; } } ////// public bool IsSynchronized { get { return false; } } ////// public ICollection RemovedBindings { get { int bindingCount = 0; ICollection keys = null; if (removedBindings != null) { keys = removedBindings.Keys; bindingCount = keys.Count; string[] removedNames = new string[bindingCount]; int i = 0; foreach (string s in keys) { removedNames[i++] = s; } removedBindings.Clear(); return removedNames; } else { return new string[0]; } } } ////// private Hashtable RemovedBindingsTable { get { if (removedBindings == null) { removedBindings = new Hashtable(StringComparer.OrdinalIgnoreCase); } return removedBindings; } } ////// public object SyncRoot { get { return this; } } ////// public ExpressionBinding this[string propertyName] { get { object o = bindings[propertyName]; if (o != null) return(ExpressionBinding)o; return null; } } public event EventHandler Changed { add { changedEvent = (EventHandler)Delegate.Combine(changedEvent, value); } remove { changedEvent = (EventHandler)Delegate.Remove(changedEvent, value); } } ////// public void Add(ExpressionBinding binding) { bindings[binding.PropertyName] = binding; RemovedBindingsTable.Remove(binding.PropertyName); OnChanged(); } ////// public bool Contains(string propName) { return bindings.Contains(propName); } ////// public void Clear() { ICollection keys = bindings.Keys; if ((keys.Count != 0) && (removedBindings == null)) { // ensure the removedBindings hashtable is created Hashtable h = RemovedBindingsTable; } foreach (string s in keys) { removedBindings[s] = String.Empty; } bindings.Clear(); OnChanged(); } ////// public void CopyTo(Array array, int index) { for (IEnumerator e = this.GetEnumerator(); e.MoveNext();) array.SetValue(e.Current, index++); } ////// public void CopyTo(ExpressionBinding[] array, int index) { for (IEnumerator e = this.GetEnumerator(); e.MoveNext();) array.SetValue(e.Current, index++); } ////// public IEnumerator GetEnumerator() { return bindings.Values.GetEnumerator(); } private void OnChanged() { if (changedEvent != null) { changedEvent(this, EventArgs.Empty); } } ////// public void Remove(string propertyName) { Remove(propertyName, true); } ////// public void Remove(ExpressionBinding binding) { Remove(binding.PropertyName, true); } ////// public void Remove(string propertyName, bool addToRemovedList) { if (Contains(propertyName)) { if (addToRemovedList && bindings.Contains(propertyName)) { RemovedBindingsTable[propertyName] = String.Empty; } bindings.Remove(propertyName); OnChanged(); } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- LinkConverter.cs
- FrameworkElementAutomationPeer.cs
- ItemsControl.cs
- MetadataUtilsSmi.cs
- HttpResponseInternalWrapper.cs
- TypeDescriptor.cs
- ArgIterator.cs
- PriorityRange.cs
- GenericEnumerator.cs
- UIElementParagraph.cs
- AdapterDictionary.cs
- OdbcInfoMessageEvent.cs
- XmlWriter.cs
- HandlerFactoryWrapper.cs
- TiffBitmapDecoder.cs
- FormatException.cs
- HtmlInputReset.cs
- TypeSchema.cs
- ProxyHelper.cs
- SoapExtensionTypeElementCollection.cs
- ApplicationContext.cs
- GlyphInfoList.cs
- followingquery.cs
- XsltFunctions.cs
- CodeTypeMemberCollection.cs
- BitmapFrameEncode.cs
- SHA1.cs
- CommandEventArgs.cs
- MetadataUtil.cs
- WmfPlaceableFileHeader.cs
- ServicePointManager.cs
- WebSysDefaultValueAttribute.cs
- RenderingBiasValidation.cs
- FileIOPermission.cs
- Membership.cs
- PrintEvent.cs
- MessageDispatch.cs
- WeakHashtable.cs
- BuildProviderAppliesToAttribute.cs
- DefaultObjectMappingItemCollection.cs
- DateTimeConverter.cs
- DataGridViewCellCollection.cs
- Style.cs
- AssertFilter.cs
- QueryResponse.cs
- FieldAccessException.cs
- HeaderCollection.cs
- DateTimePicker.cs
- NumericUpDown.cs
- FormViewDeleteEventArgs.cs
- SchemaImporter.cs
- UnrecognizedPolicyAssertionElement.cs
- QilDataSource.cs
- XmlDigitalSignatureProcessor.cs
- ArrayEditor.cs
- DragEvent.cs
- KeyFrames.cs
- AuthorizationRule.cs
- SchemaCollectionCompiler.cs
- DigestComparer.cs
- BufferedStream.cs
- CompiledQuery.cs
- DuplexChannel.cs
- FormClosedEvent.cs
- PropertySourceInfo.cs
- RuntimeResourceSet.cs
- View.cs
- PathGradientBrush.cs
- XmlSchemaSimpleTypeList.cs
- DataGridSortCommandEventArgs.cs
- WsdlImporter.cs
- WrapPanel.cs
- MimeTypeMapper.cs
- AnchoredBlock.cs
- PaginationProgressEventArgs.cs
- HtmlTableRow.cs
- QueryCacheManager.cs
- ObjectNavigationPropertyMapping.cs
- HyperLink.cs
- ExecutionScope.cs
- SectionVisual.cs
- PocoEntityKeyStrategy.cs
- HttpWriter.cs
- SettingsPropertyCollection.cs
- MappingException.cs
- UInt64.cs
- InvokeHandlers.cs
- ExpandCollapseIsCheckedConverter.cs
- DataServicePagingProviderWrapper.cs
- CodeAttributeDeclarationCollection.cs
- ZipIOLocalFileDataDescriptor.cs
- SamlAuthorityBinding.cs
- StreamInfo.cs
- SAPICategories.cs
- SizeAnimationUsingKeyFrames.cs
- RelationshipDetailsRow.cs
- OleDbConnection.cs
- ApplicationBuildProvider.cs
- ParentQuery.cs
- PointConverter.cs