Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- HeaderedContentControl.cs
- FixedSOMGroup.cs
- CompModSwitches.cs
- SoapElementAttribute.cs
- SqlDependencyUtils.cs
- ProcessModule.cs
- BrowserCapabilitiesFactory.cs
- BlurEffect.cs
- InfoCardTraceRecord.cs
- Select.cs
- SchemaAttDef.cs
- BackgroundFormatInfo.cs
- ApplicationDirectory.cs
- userdatakeys.cs
- UnsafeCollabNativeMethods.cs
- WebPartAuthorizationEventArgs.cs
- SizeLimitedCache.cs
- DataColumnMappingCollection.cs
- TextRangeSerialization.cs
- DotAtomReader.cs
- AsyncContentLoadedEventArgs.cs
- Parsers.cs
- DecimalAnimationUsingKeyFrames.cs
- ThicknessConverter.cs
- Transform3D.cs
- SQLInt16Storage.cs
- EdmFunctions.cs
- GenericPrincipal.cs
- ImageMap.cs
- PolicyException.cs
- WebPartConnectionsCancelVerb.cs
- OracleTransaction.cs
- MailAddressCollection.cs
- RectangleConverter.cs
- MouseBinding.cs
- _ConnectionGroup.cs
- Authorization.cs
- Stack.cs
- EpmSyndicationContentSerializer.cs
- GlobalizationAssembly.cs
- FileDialogPermission.cs
- EventListener.cs
- XmlElementElement.cs
- PublisherMembershipCondition.cs
- EntityStoreSchemaFilterEntry.cs
- WebPartHelpVerb.cs
- NamedPermissionSet.cs
- ToolBarTray.cs
- CodeAttributeDeclarationCollection.cs
- WebPartZone.cs
- CFGGrammar.cs
- DataContractSerializer.cs
- GreenMethods.cs
- x509store.cs
- _HeaderInfoTable.cs
- HttpProfileGroupBase.cs
- WebServiceMethodData.cs
- MarshalByRefObject.cs
- SqlConnectionFactory.cs
- WebSysDescriptionAttribute.cs
- UTF32Encoding.cs
- JsonFormatReaderGenerator.cs
- MsmqTransportElement.cs
- ToolStripRendererSwitcher.cs
- FilteredDataSetHelper.cs
- ContextMenuStripGroupCollection.cs
- EventLogWatcher.cs
- HtmlWindowCollection.cs
- TrimSurroundingWhitespaceAttribute.cs
- InputLanguageEventArgs.cs
- OracleSqlParser.cs
- _NegoState.cs
- _ListenerRequestStream.cs
- Pipe.cs
- AdPostCacheSubstitution.cs
- HitTestFilterBehavior.cs
- StyleCollection.cs
- HttpListenerContext.cs
- AspNetSynchronizationContext.cs
- ContentFilePart.cs
- UniqueCodeIdentifierScope.cs
- SourceCollection.cs
- DiscreteKeyFrames.cs
- EntityContainerEmitter.cs
- XamlToRtfParser.cs
- EventData.cs
- XmlImplementation.cs
- RegexParser.cs
- BitmapPalette.cs
- BehaviorService.cs
- WebRequestModuleElementCollection.cs
- NativeConfigurationLoader.cs
- SettingsPropertyIsReadOnlyException.cs
- OdbcConnectionHandle.cs
- AppDomainFactory.cs
- InvokePattern.cs
- AnnotationComponentManager.cs
- DbConnectionPoolGroup.cs
- ConcurrencyMode.cs
- ViewLoader.cs