Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / DataBindingCollection.cs / 2 / 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(); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------------------------ //// 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(); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- WebConvert.cs
- ListParaClient.cs
- PrivateUnsafeNativeCompoundFileMethods.cs
- ToolStripItemClickedEventArgs.cs
- CorrelationManager.cs
- DataBindingCollection.cs
- SystemPens.cs
- Automation.cs
- StringUtil.cs
- WebHeaderCollection.cs
- HttpListenerResponse.cs
- DataGridCommandEventArgs.cs
- _FtpControlStream.cs
- BaseUriHelper.cs
- DoubleStorage.cs
- CleanUpVirtualizedItemEventArgs.cs
- RootBrowserWindow.cs
- WebPartConnectionsCloseVerb.cs
- ManualResetEvent.cs
- FormViewPageEventArgs.cs
- Util.cs
- ImportException.cs
- ToolStripPanelRenderEventArgs.cs
- BitmapPalette.cs
- CompressedStack.cs
- ConfigXmlComment.cs
- InputProcessorProfilesLoader.cs
- COM2FontConverter.cs
- BaseCodePageEncoding.cs
- DocumentApplicationState.cs
- EditingCoordinator.cs
- RuntimeEnvironment.cs
- ProgressBar.cs
- ChildTable.cs
- indexingfiltermarshaler.cs
- SizeConverter.cs
- ButtonFieldBase.cs
- QueryOperationResponseOfT.cs
- AnnouncementSendsAsyncResult.cs
- XPSSignatureDefinition.cs
- Ops.cs
- PreviewPrintController.cs
- ApplicationActivator.cs
- HtmlElementCollection.cs
- ResourceDescriptionAttribute.cs
- DataRowChangeEvent.cs
- ProfilePropertyMetadata.cs
- DataBindingCollection.cs
- HttpHeaderCollection.cs
- HttpFileCollection.cs
- DesignerView.cs
- HeaderCollection.cs
- HashHelper.cs
- DoubleAnimation.cs
- PropertyMapper.cs
- EdmProperty.cs
- Int64.cs
- SchemaDeclBase.cs
- ListenerSessionConnection.cs
- AdapterDictionary.cs
- StreamInfo.cs
- TrustManagerMoreInformation.cs
- CoreSwitches.cs
- BoundConstants.cs
- HashMembershipCondition.cs
- HttpsHostedTransportConfiguration.cs
- ButtonBaseAutomationPeer.cs
- Condition.cs
- CapabilitiesAssignment.cs
- ProfessionalColors.cs
- LoginName.cs
- SoapTypeAttribute.cs
- Region.cs
- FontFamily.cs
- AutomationPattern.cs
- InlineUIContainer.cs
- ExeConfigurationFileMap.cs
- SamlAudienceRestrictionCondition.cs
- TypeConverterHelper.cs
- ValidationRule.cs
- FunctionNode.cs
- TabPageDesigner.cs
- ProcessHostFactoryHelper.cs
- DbProviderFactory.cs
- Identifier.cs
- StreamInfo.cs
- NavigationPropertyEmitter.cs
- LinkedResource.cs
- ReadingWritingEntityEventArgs.cs
- SelectionUIHandler.cs
- MenuItemCollection.cs
- ApplicationCommands.cs
- PrintPreviewGraphics.cs
- TrackBar.cs
- RootBuilder.cs
- FactoryMaker.cs
- TemplateGroupCollection.cs
- ToolStripMenuItem.cs
- BaseTemplateCodeDomTreeGenerator.cs
- StreamGeometry.cs