Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- ObjectViewListener.cs
- TextWriterTraceListener.cs
- FileReader.cs
- RectangleF.cs
- ColorConvertedBitmap.cs
- TrackBarDesigner.cs
- RelationshipEnd.cs
- SmiConnection.cs
- SqlConnectionFactory.cs
- BinaryMethodMessage.cs
- InputLanguageCollection.cs
- DynamicDataResources.Designer.cs
- TerminatorSinks.cs
- ToolBarDesigner.cs
- Base64Decoder.cs
- WebPartConnectionsConnectVerb.cs
- XmlSchemaAll.cs
- TransformConverter.cs
- SmiTypedGetterSetter.cs
- TracedNativeMethods.cs
- XmlEventCache.cs
- SafeNativeMethods.cs
- DispatcherHookEventArgs.cs
- PerformanceCounterCategory.cs
- TraceXPathNavigator.cs
- Pkcs7Signer.cs
- HebrewCalendar.cs
- XPathMessageFilterElementComparer.cs
- IntSecurity.cs
- FrameSecurityDescriptor.cs
- RemotingService.cs
- RSAPKCS1KeyExchangeFormatter.cs
- ServerValidateEventArgs.cs
- FrameworkElement.cs
- Selector.cs
- PerformanceCounterManager.cs
- ResourceReferenceExpression.cs
- RowToParametersTransformer.cs
- EmptyCollection.cs
- TimerElapsedEvenArgs.cs
- DataMemberConverter.cs
- ManipulationPivot.cs
- TreeNodeCollectionEditor.cs
- DateTimeFormatInfoScanner.cs
- ClipboardData.cs
- TakeOrSkipQueryOperator.cs
- DataGridColumnCollection.cs
- Transactions.cs
- TextTreeFixupNode.cs
- OracleCommandBuilder.cs
- ProfileParameter.cs
- PrefixHandle.cs
- CreateParams.cs
- FileDialogCustomPlace.cs
- EventRouteFactory.cs
- DocumentXmlWriter.cs
- ContainerUIElement3D.cs
- PenLineJoinValidation.cs
- IncrementalHitTester.cs
- UrlPath.cs
- WasNotInstalledException.cs
- CodePropertyReferenceExpression.cs
- RelationshipEnd.cs
- ExtendedPropertyCollection.cs
- BrowserCapabilitiesFactory.cs
- TypeDescriptionProviderAttribute.cs
- XslAstAnalyzer.cs
- ToolBarPanel.cs
- ActivationArguments.cs
- Root.cs
- EmissiveMaterial.cs
- XmlComplianceUtil.cs
- MetadataArtifactLoaderCompositeResource.cs
- ChangePassword.cs
- ProtocolReflector.cs
- OperationAbortedException.cs
- RNGCryptoServiceProvider.cs
- ExecutionTracker.cs
- SymmetricAlgorithm.cs
- TrackingStringDictionary.cs
- Int32Rect.cs
- TextInfo.cs
- SafeRightsManagementQueryHandle.cs
- TabletDeviceInfo.cs
- TcpSocketManager.cs
- MarshalByRefObject.cs
- DefaultWorkflowSchedulerService.cs
- _UncName.cs
- _ConnectStream.cs
- Int32EqualityComparer.cs
- TerminateDesigner.cs
- TraceSection.cs
- AttachedPropertyBrowsableWhenAttributePresentAttribute.cs
- ReadWriteSpinLock.cs
- ClassValidator.cs
- ExtensionWindow.cs
- BinaryExpression.cs
- RowToFieldTransformer.cs
- UndoManager.cs
- DataSourceViewSchemaConverter.cs