Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / ExpressionBindingCollection.cs / 1 / ExpressionBindingCollection.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 ExpressionBindingCollection : ICollection { private EventHandler changedEvent; private Hashtable bindings; private Hashtable removedBindings; ////// public ExpressionBindingCollection() { 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 ICollection 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 ExpressionBinding this[string propertyName] { get { object o = bindings[propertyName]; if (o != null) return(ExpressionBinding)o; return null; } } public event EventHandler Changed { add { changedEvent = (EventHandler)Delegate.Combine(changedEvent, value); } remove { changedEvent = (EventHandler)Delegate.Remove(changedEvent, value); } } ////// public void Add(ExpressionBinding binding) { bindings[binding.PropertyName] = binding; RemovedBindingsTable.Remove(binding.PropertyName); OnChanged(); } ////// public bool Contains(string propName) { return bindings.Contains(propName); } ////// 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 void CopyTo(ExpressionBinding[] 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(ExpressionBinding binding) { Remove(binding.PropertyName, true); } ////// public void Remove(string propertyName, bool addToRemovedList) { if (Contains(propertyName)) { if (addToRemovedList && bindings.Contains(propertyName)) { RemovedBindingsTable[propertyName] = String.Empty; } bindings.Remove(propertyName); OnChanged(); } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DesignerAutoFormat.cs
- MailDefinition.cs
- SafeCertificateContext.cs
- SystemKeyConverter.cs
- ContentFileHelper.cs
- Calendar.cs
- XDeferredAxisSource.cs
- ProtocolsSection.cs
- ControlBuilderAttribute.cs
- Atom10FormatterFactory.cs
- MaxValueConverter.cs
- ProxyElement.cs
- SoapProtocolImporter.cs
- WebMessageEncoderFactory.cs
- CodeTypeMember.cs
- SecurityHelper.cs
- XmlReflectionMember.cs
- Msec.cs
- TraversalRequest.cs
- TreeView.cs
- querybuilder.cs
- PasswordPropertyTextAttribute.cs
- DataServiceRequestException.cs
- StaticDataManager.cs
- SqlFunctionAttribute.cs
- Menu.cs
- TakeOrSkipWhileQueryOperator.cs
- MsmqIntegrationProcessProtocolHandler.cs
- DoubleAnimationUsingPath.cs
- HtmlHistory.cs
- NamespaceMapping.cs
- CharAnimationUsingKeyFrames.cs
- Converter.cs
- MarshalDirectiveException.cs
- DataGridViewComboBoxEditingControl.cs
- CheckBox.cs
- CompilerTypeWithParams.cs
- AuthenticationManager.cs
- RegionInfo.cs
- X509Utils.cs
- ObjectViewFactory.cs
- WebPartsSection.cs
- BindingMAnagerBase.cs
- FontStretch.cs
- DataGridViewCellStyle.cs
- TreeNode.cs
- DesignerObject.cs
- SqlAliaser.cs
- EnumerableWrapperWeakToStrong.cs
- ChannelServices.cs
- PersistenceMetadataNamespace.cs
- SAPIEngineTypes.cs
- VirtualPathUtility.cs
- AnonymousIdentificationModule.cs
- ConvertersCollection.cs
- GridViewEditEventArgs.cs
- TransformerConfigurationWizardBase.cs
- EntityConnectionStringBuilder.cs
- DataGridViewCellValidatingEventArgs.cs
- WorkflowTraceTransfer.cs
- DataGridRow.cs
- ProgressChangedEventArgs.cs
- _ProxyRegBlob.cs
- SystemException.cs
- HttpContextWrapper.cs
- DCSafeHandle.cs
- HttpServerVarsCollection.cs
- MeshGeometry3D.cs
- InvalidEnumArgumentException.cs
- GridViewSortEventArgs.cs
- Deserializer.cs
- TrackingServices.cs
- AbandonedMutexException.cs
- ComplusEndpointConfigContainer.cs
- DBPropSet.cs
- GlyphRun.cs
- MemberPath.cs
- SafePEFileHandle.cs
- ConnectionStringEditor.cs
- SessionViewState.cs
- ContainerParaClient.cs
- XmlReflectionMember.cs
- InternalBufferOverflowException.cs
- LogSwitch.cs
- updateconfighost.cs
- PropertyEmitter.cs
- ColorInterpolationModeValidation.cs
- CodeChecksumPragma.cs
- FacetChecker.cs
- Attachment.cs
- DataBindingsDialog.cs
- UnsafeNativeMethods.cs
- ClientData.cs
- ObjectStateManager.cs
- MultiDataTrigger.cs
- backend.cs
- WSHttpBindingCollectionElement.cs
- Rect3DValueSerializer.cs
- Argument.cs
- AttachedPropertyBrowsableAttribute.cs