Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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(); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TargetControlTypeCache.cs
- WindowPatternIdentifiers.cs
- ResolveCompletedEventArgs.cs
- WpfWebRequestHelper.cs
- RequestTimeoutManager.cs
- SendMailErrorEventArgs.cs
- safex509handles.cs
- XpsManager.cs
- StreamUpgradeInitiator.cs
- CodeRegionDirective.cs
- ToolStripLabel.cs
- RegexGroupCollection.cs
- CommentEmitter.cs
- BindableAttribute.cs
- ListViewDataItem.cs
- PrincipalPermissionMode.cs
- CapacityStreamGeometryContext.cs
- Point4DValueSerializer.cs
- PageThemeBuildProvider.cs
- ColumnWidthChangedEvent.cs
- ElementHost.cs
- PasswordDeriveBytes.cs
- ToolStripContentPanel.cs
- ThreadPoolTaskScheduler.cs
- ContentTypeSettingClientMessageFormatter.cs
- SwitchDesigner.xaml.cs
- ReadOnlyDictionary.cs
- WorkflowServiceBehavior.cs
- WebControl.cs
- ViewStateModeByIdAttribute.cs
- HitTestResult.cs
- ResolveMatches11.cs
- QueryableFilterRepeater.cs
- XmlAttributeCache.cs
- TextBoxView.cs
- MaxMessageSizeStream.cs
- IPGlobalProperties.cs
- ExpressionBindings.cs
- BaseValidator.cs
- TaskFormBase.cs
- GeneralTransform3DGroup.cs
- AssemblyUtil.cs
- JsonWriter.cs
- SymmetricKey.cs
- StreamGeometry.cs
- VisualStyleRenderer.cs
- IBuiltInEvidence.cs
- StaticSiteMapProvider.cs
- SHA256.cs
- Figure.cs
- RemoteWebConfigurationHostStream.cs
- Converter.cs
- HttpRuntime.cs
- MetadataItem_Static.cs
- FontInfo.cs
- FullTextState.cs
- PackagingUtilities.cs
- ISAPIApplicationHost.cs
- CompositeFontFamily.cs
- Sequence.cs
- ContentValidator.cs
- X509CertificateValidator.cs
- FormViewPageEventArgs.cs
- BasicCommandTreeVisitor.cs
- SiteOfOriginPart.cs
- SamlAssertion.cs
- PopOutPanel.cs
- PtsPage.cs
- OrderedEnumerableRowCollection.cs
- RewritingPass.cs
- Sequence.cs
- IRCollection.cs
- NetNamedPipeBinding.cs
- EnumType.cs
- SerializationBinder.cs
- StrokeNodeOperations.cs
- ExtensionFile.cs
- SqlErrorCollection.cs
- IPAddressCollection.cs
- ReferenceTypeElement.cs
- DataControlButton.cs
- Int64AnimationBase.cs
- AncillaryOps.cs
- BrowserInteropHelper.cs
- WindowsSlider.cs
- OdbcRowUpdatingEvent.cs
- ImageAnimator.cs
- HostedTcpTransportManager.cs
- PositiveTimeSpanValidator.cs
- codemethodreferenceexpression.cs
- ResourcePool.cs
- CompositeScriptReferenceEventArgs.cs
- SiteMapNodeItemEventArgs.cs
- DataTrigger.cs
- AddIn.cs
- XmlSchemaGroupRef.cs
- DataComponentNameHandler.cs
- ControlPropertyNameConverter.cs
- PeerNameRecord.cs
- DateTimeOffsetConverter.cs