Code:
/ DotNET / DotNET / 8.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
- COAUTHIDENTITY.cs
- RegexTree.cs
- ApplicationDirectory.cs
- DbgUtil.cs
- SqlReferenceCollection.cs
- ToolStripDropTargetManager.cs
- MemoryMappedViewStream.cs
- KoreanLunisolarCalendar.cs
- CachedPathData.cs
- HttpHandlerActionCollection.cs
- JavaScriptString.cs
- StylusPointDescription.cs
- WorkerRequest.cs
- WizardDesigner.cs
- BinaryNode.cs
- WebPartVerbCollection.cs
- Model3D.cs
- ServiceOperationInfoTypeConverter.cs
- TypeUnloadedException.cs
- XmlTextReaderImpl.cs
- ColorTranslator.cs
- DbDataAdapter.cs
- DragCompletedEventArgs.cs
- AggregateException.cs
- SqlExpressionNullability.cs
- RadioButtonStandardAdapter.cs
- AuthorizationRuleCollection.cs
- Accessible.cs
- TemplateXamlParser.cs
- AuthenticationSection.cs
- WebBrowser.cs
- CardSpaceSelector.cs
- RealProxy.cs
- AvTrace.cs
- ConfigurationPropertyAttribute.cs
- TextBoxBase.cs
- DataBoundControlAdapter.cs
- OutputBuffer.cs
- XmlNodeComparer.cs
- UriTemplateCompoundPathSegment.cs
- CharacterHit.cs
- FixedSOMFixedBlock.cs
- SplashScreen.cs
- GAC.cs
- ToolStripItemTextRenderEventArgs.cs
- DbProviderFactory.cs
- ParserHooks.cs
- PropertyRecord.cs
- FloaterBaseParaClient.cs
- ProtectedConfigurationSection.cs
- XPathNodeList.cs
- SerializerDescriptor.cs
- PermissionSetTriple.cs
- FirstMatchCodeGroup.cs
- CompiledRegexRunnerFactory.cs
- ImageClickEventArgs.cs
- ButtonBaseAdapter.cs
- DbConnectionInternal.cs
- XPathScanner.cs
- TextViewBase.cs
- StringCollectionEditor.cs
- Font.cs
- WorkflowInstanceProvider.cs
- ApplyImportsAction.cs
- VirtualPathUtility.cs
- EventWaitHandleSecurity.cs
- XmlDataSourceDesigner.cs
- QuaternionRotation3D.cs
- bidPrivateBase.cs
- AggregatePushdown.cs
- InfoCardBinaryReader.cs
- DataMemberFieldConverter.cs
- MessageLogTraceRecord.cs
- SecurityElement.cs
- CombinedHttpChannel.cs
- ThreadSafeList.cs
- Boolean.cs
- PathStreamGeometryContext.cs
- FontInfo.cs
- ContractDescription.cs
- MetadataItemEmitter.cs
- PeerNearMe.cs
- ComPlusServiceHost.cs
- BitmapPalettes.cs
- ListenUriMode.cs
- FieldDescriptor.cs
- FontSourceCollection.cs
- BlobPersonalizationState.cs
- CommandLibraryHelper.cs
- DebugHandleTracker.cs
- PinProtectionHelper.cs
- BookmarkUndoUnit.cs
- WithParamAction.cs
- ParseHttpDate.cs
- DiscoveryClientBindingElement.cs
- RegexGroup.cs
- ColorAnimationUsingKeyFrames.cs
- AnnotationMap.cs
- ConfigurationStrings.cs
- Misc.cs