Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / DataBindingCollection.cs / 1 / DataBindingCollection.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 DataBindingCollection : ICollection { private EventHandler changedEvent; private Hashtable bindings; private Hashtable removedBindings; ////// public DataBindingCollection() { 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 string[] 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 DataBinding this[string propertyName] { get { object o = bindings[propertyName]; if (o != null) return(DataBinding)o; return null; } } public event EventHandler Changed { add { changedEvent = (EventHandler)Delegate.Combine(changedEvent, value); } remove { changedEvent = (EventHandler)Delegate.Remove(changedEvent, value); } } ////// public void Add(DataBinding binding) { bindings[binding.PropertyName] = binding; RemovedBindingsTable.Remove(binding.PropertyName); OnChanged(); } ////// public bool Contains(string propertyName) { return bindings.Contains(propertyName); } ////// 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 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(DataBinding binding) { Remove(binding.PropertyName, true); } ////// public void Remove(string propertyName, bool addToRemovedList) { if (Contains(propertyName)) { bindings.Remove(propertyName); if (addToRemovedList) { RemovedBindingsTable[propertyName] = String.Empty; } OnChanged(); } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- WeakReadOnlyCollection.cs
- DataKeyCollection.cs
- GuidelineSet.cs
- PrivateUnsafeNativeCompoundFileMethods.cs
- Mappings.cs
- SocketStream.cs
- FlowLayoutPanelDesigner.cs
- MarginCollapsingState.cs
- DefaultPropertyAttribute.cs
- Timer.cs
- TdsParameterSetter.cs
- PriorityQueue.cs
- SiteMapPath.cs
- ReadOnlyCollection.cs
- ApplicationDirectoryMembershipCondition.cs
- XamlVector3DCollectionSerializer.cs
- GeneralTransform3DGroup.cs
- ContentFilePart.cs
- DesignerAttribute.cs
- ConsoleCancelEventArgs.cs
- ToolStripContainer.cs
- UrlMapping.cs
- ColorConverter.cs
- DataQuery.cs
- RangeValuePattern.cs
- DataViewManager.cs
- OdbcDataAdapter.cs
- RepeatBehaviorConverter.cs
- regiisutil.cs
- MetadataHelper.cs
- EventLogEntryCollection.cs
- AnnouncementInnerClientCD1.cs
- Shape.cs
- OdbcHandle.cs
- ClrProviderManifest.cs
- XomlSerializationHelpers.cs
- DataControlCommands.cs
- TraceHwndHost.cs
- LexicalChunk.cs
- Debug.cs
- AutomationPatternInfo.cs
- BinaryFormatterSinks.cs
- IEnumerable.cs
- CodeDOMUtility.cs
- ContentPresenter.cs
- RC2CryptoServiceProvider.cs
- AspNetSynchronizationContext.cs
- TypeDependencyAttribute.cs
- AuthenticationModuleElement.cs
- LinqDataView.cs
- FrameworkRichTextComposition.cs
- PolyLineSegment.cs
- SqlRowUpdatingEvent.cs
- UIAgentCrashedException.cs
- XmlSerializationReader.cs
- SessionStateItemCollection.cs
- WindowsTreeView.cs
- Transactions.cs
- FaultPropagationQuery.cs
- DoubleConverter.cs
- Function.cs
- Qualifier.cs
- diagnosticsswitches.cs
- DataGridCaption.cs
- XsltOutput.cs
- TargetParameterCountException.cs
- FilterableAttribute.cs
- StorageBasedPackageProperties.cs
- _ProxyRegBlob.cs
- SQLGuid.cs
- ImpersonateTokenRef.cs
- XmlSerializer.cs
- AlphabetConverter.cs
- RawStylusActions.cs
- IntSecurity.cs
- ToolBarButton.cs
- XamlWriterExtensions.cs
- PopOutPanel.cs
- ExpressionBuilder.cs
- XmlMessageFormatter.cs
- ProjectionPathBuilder.cs
- BuildProviderAppliesToAttribute.cs
- Region.cs
- StylusTouchDevice.cs
- EventLogQuery.cs
- EntityContainerEmitter.cs
- ImageFormat.cs
- ItemContainerGenerator.cs
- KeyGesture.cs
- CompoundFileIOPermission.cs
- InlineObject.cs
- StaticExtensionConverter.cs
- ReferenceEqualityComparer.cs
- HashMembershipCondition.cs
- ZipIOCentralDirectoryFileHeader.cs
- X509ChainElement.cs
- XPathDescendantIterator.cs
- XmlRawWriter.cs
- SimpleRecyclingCache.cs
- WinFormsUtils.cs