Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / ExpressionBindingCollection.cs / 2 / 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(); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Evidence.cs
- _ListenerAsyncResult.cs
- PairComparer.cs
- ListViewItemMouseHoverEvent.cs
- SqlCacheDependencySection.cs
- EDesignUtil.cs
- TiffBitmapDecoder.cs
- RenderData.cs
- X509CertificateTrustedIssuerElement.cs
- LocalizationParserHooks.cs
- EventPropertyMap.cs
- WebPartConnectVerb.cs
- MetadataArtifactLoaderCompositeFile.cs
- AuthenticatingEventArgs.cs
- SchemaImporterExtensionsSection.cs
- SemanticAnalyzer.cs
- WCFServiceClientProxyGenerator.cs
- ZoneLinkButton.cs
- BooleanToVisibilityConverter.cs
- TextLineResult.cs
- XmlText.cs
- AutomationEvent.cs
- ThumbAutomationPeer.cs
- RecordsAffectedEventArgs.cs
- BuilderPropertyEntry.cs
- MouseOverProperty.cs
- SimpleType.cs
- SchemaNamespaceManager.cs
- ApplicationFileParser.cs
- AssociationEndMember.cs
- RemoteCryptoDecryptRequest.cs
- SQLBytes.cs
- SectionXmlInfo.cs
- TextRangeBase.cs
- XmlSchemaAnnotated.cs
- PaintValueEventArgs.cs
- ToolboxItemAttribute.cs
- UnsafeNativeMethodsMilCoreApi.cs
- BindingExpression.cs
- SyndicationItemFormatter.cs
- DelegatingTypeDescriptionProvider.cs
- PolicyException.cs
- CompositionTarget.cs
- ResourcesChangeInfo.cs
- Geometry.cs
- GridViewSelectEventArgs.cs
- ProvidersHelper.cs
- SqlUtils.cs
- AsyncOperationManager.cs
- ManipulationDevice.cs
- sortedlist.cs
- BlurBitmapEffect.cs
- SerializationInfo.cs
- SortKey.cs
- NativeObjectSecurity.cs
- NameValueConfigurationCollection.cs
- HwndSource.cs
- XmlElementList.cs
- PermissionAttributes.cs
- ISAPIApplicationHost.cs
- DispatcherProcessingDisabled.cs
- GroupItem.cs
- CompensationParticipant.cs
- PostBackOptions.cs
- AutomationAttributeInfo.cs
- ProtectedConfiguration.cs
- SQLByteStorage.cs
- OdbcParameterCollection.cs
- ExpressionStringBuilder.cs
- ISCIIEncoding.cs
- VectorAnimationBase.cs
- MetafileEditor.cs
- ProcessHost.cs
- CalendarButtonAutomationPeer.cs
- DataGridViewColumnHeaderCell.cs
- IODescriptionAttribute.cs
- ObjectStateEntryBaseUpdatableDataRecord.cs
- XmlMapping.cs
- ValidationHelpers.cs
- DiscoveryDocumentSerializer.cs
- BamlMapTable.cs
- FieldMetadata.cs
- XmlIterators.cs
- FileDialog.cs
- CodeRemoveEventStatement.cs
- EntityContainerEmitter.cs
- BrowserCapabilitiesCodeGenerator.cs
- HiddenField.cs
- SwitchElementsCollection.cs
- ReverseInheritProperty.cs
- DefaultParameterValueAttribute.cs
- RemotingConfiguration.cs
- UnsafeNativeMethodsMilCoreApi.cs
- SystemDiagnosticsSection.cs
- TextBreakpoint.cs
- CodeExpressionCollection.cs
- TileModeValidation.cs
- CheckableControlBaseAdapter.cs
- TextBlock.cs
- TypeGeneratedEventArgs.cs