Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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(); } } } } // 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 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- X509Certificate2.cs
- AbstractSvcMapFileLoader.cs
- PartialCachingControl.cs
- DemultiplexingClientMessageFormatter.cs
- HandleExceptionArgs.cs
- ClientCultureInfo.cs
- DefaultBinder.cs
- DiscoveryServiceExtension.cs
- SqlTypeSystemProvider.cs
- File.cs
- DynamicPropertyReader.cs
- TypeSource.cs
- Content.cs
- login.cs
- IisTraceWebEventProvider.cs
- FlowLayoutSettings.cs
- XPathChildIterator.cs
- QueryOperationResponseOfT.cs
- AppDomainFactory.cs
- ModuleBuilderData.cs
- CloudCollection.cs
- ItemCollection.cs
- TextFindEngine.cs
- NullReferenceException.cs
- DataServiceQueryException.cs
- DataGridBoolColumn.cs
- DataProtection.cs
- NamespaceQuery.cs
- WindowsListViewItem.cs
- MimeTypeAttribute.cs
- CrossSiteScriptingValidation.cs
- ControlUtil.cs
- DataColumnChangeEvent.cs
- HtmlInputImage.cs
- FileFormatException.cs
- EventMappingSettingsCollection.cs
- TextChange.cs
- HtmlButton.cs
- TrackBar.cs
- UInt64Storage.cs
- XmlIlGenerator.cs
- CustomError.cs
- JumpTask.cs
- StringFreezingAttribute.cs
- KeyInterop.cs
- LinqDataSourceStatusEventArgs.cs
- ConfigurationLocationCollection.cs
- HashHelper.cs
- DataGridRelationshipRow.cs
- BatchStream.cs
- TextBox.cs
- commandenforcer.cs
- Choices.cs
- WebServiceHost.cs
- QilLiteral.cs
- SqlDataSourceFilteringEventArgs.cs
- ScriptRegistrationManager.cs
- RC2.cs
- ProcessStartInfo.cs
- Line.cs
- Run.cs
- COAUTHINFO.cs
- SemanticTag.cs
- _SecureChannel.cs
- CodeTypeParameterCollection.cs
- SurrogateChar.cs
- ConsoleKeyInfo.cs
- ToolStripPanelSelectionBehavior.cs
- RectangleGeometry.cs
- PathGeometry.cs
- DefaultValueConverter.cs
- DBAsyncResult.cs
- TemplateControlParser.cs
- ResourceReader.cs
- XmlMemberMapping.cs
- IsolatedStorageFile.cs
- SrgsRulesCollection.cs
- SafeProcessHandle.cs
- TraceContext.cs
- Collection.cs
- InvalidFilterCriteriaException.cs
- ValueQuery.cs
- KoreanCalendar.cs
- TextTabProperties.cs
- ScriptControlDescriptor.cs
- Random.cs
- CurrentTimeZone.cs
- SystemResourceHost.cs
- NameTable.cs
- WebPartCatalogCloseVerb.cs
- SecurityTokenValidationException.cs
- ScrollEvent.cs
- UnsafeNativeMethods.cs
- PageWrapper.cs
- ComponentChangedEvent.cs
- glyphs.cs
- Debug.cs
- DataGridTableStyleMappingNameEditor.cs
- FormViewCommandEventArgs.cs
- Camera.cs