Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / wpf / src / Base / System / Collections / Specialized / CollectionChangedEventManager.cs / 1 / CollectionChangedEventManager.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // Description: Manager for the CollectionChanged event in the "weak event listener" // pattern. See WeakEventTable.cs for an overview. // //--------------------------------------------------------------------------- using System; using System.Windows; // WeakEventManager namespace System.Collections.Specialized { ////// Manager for the INotifyCollectionChanged.CollectionChanged event. /// public class CollectionChangedEventManager : WeakEventManager { #region Constructors // // Constructors // private CollectionChangedEventManager() { } #endregion Constructors #region Public Methods // // Public Methods // ////// Add a listener to the given source's event. /// public static void AddListener(INotifyCollectionChanged source, IWeakEventListener listener) { CurrentManager.ProtectedAddListener(source, listener); } ////// Remove a listener to the given source's event. /// public static void RemoveListener(INotifyCollectionChanged source, IWeakEventListener listener) { CurrentManager.ProtectedRemoveListener(source, listener); } #endregion Public Methods #region Protected Methods // // Protected Methods // ////// Listen to the given source for the event. /// protected override void StartListening(object source) { INotifyCollectionChanged typedSource = (INotifyCollectionChanged)source; typedSource.CollectionChanged += new NotifyCollectionChangedEventHandler(OnCollectionChanged); } ////// Stop listening to the given source for the event. /// protected override void StopListening(object source) { INotifyCollectionChanged typedSource = (INotifyCollectionChanged)source; typedSource.CollectionChanged -= new NotifyCollectionChangedEventHandler(OnCollectionChanged); } #endregion Protected Methods #region Private Properties // // Private Properties // // get the event manager for the current thread private static CollectionChangedEventManager CurrentManager { get { Type managerType = typeof(CollectionChangedEventManager); CollectionChangedEventManager manager = (CollectionChangedEventManager)GetCurrentManager(managerType); // at first use, create and register a new manager if (manager == null) { manager = new CollectionChangedEventManager(); SetCurrentManager(managerType, manager); } return manager; } } #endregion Private Properties #region Private Methods // // Private Methods // // event handler for CollectionChanged event private void OnCollectionChanged(object sender, NotifyCollectionChangedEventArgs args) { DeliverEvent(sender, args); } #endregion Private Methods } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // Description: Manager for the CollectionChanged event in the "weak event listener" // pattern. See WeakEventTable.cs for an overview. // //--------------------------------------------------------------------------- using System; using System.Windows; // WeakEventManager namespace System.Collections.Specialized { ////// Manager for the INotifyCollectionChanged.CollectionChanged event. /// public class CollectionChangedEventManager : WeakEventManager { #region Constructors // // Constructors // private CollectionChangedEventManager() { } #endregion Constructors #region Public Methods // // Public Methods // ////// Add a listener to the given source's event. /// public static void AddListener(INotifyCollectionChanged source, IWeakEventListener listener) { CurrentManager.ProtectedAddListener(source, listener); } ////// Remove a listener to the given source's event. /// public static void RemoveListener(INotifyCollectionChanged source, IWeakEventListener listener) { CurrentManager.ProtectedRemoveListener(source, listener); } #endregion Public Methods #region Protected Methods // // Protected Methods // ////// Listen to the given source for the event. /// protected override void StartListening(object source) { INotifyCollectionChanged typedSource = (INotifyCollectionChanged)source; typedSource.CollectionChanged += new NotifyCollectionChangedEventHandler(OnCollectionChanged); } ////// Stop listening to the given source for the event. /// protected override void StopListening(object source) { INotifyCollectionChanged typedSource = (INotifyCollectionChanged)source; typedSource.CollectionChanged -= new NotifyCollectionChangedEventHandler(OnCollectionChanged); } #endregion Protected Methods #region Private Properties // // Private Properties // // get the event manager for the current thread private static CollectionChangedEventManager CurrentManager { get { Type managerType = typeof(CollectionChangedEventManager); CollectionChangedEventManager manager = (CollectionChangedEventManager)GetCurrentManager(managerType); // at first use, create and register a new manager if (manager == null) { manager = new CollectionChangedEventManager(); SetCurrentManager(managerType, manager); } return manager; } } #endregion Private Properties #region Private Methods // // Private Methods // // event handler for CollectionChanged event private void OnCollectionChanged(object sender, NotifyCollectionChangedEventArgs args) { DeliverEvent(sender, args); } #endregion Private Methods } } // 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
- AuthenticationModulesSection.cs
- MarkupCompilePass1.cs
- RangeExpression.cs
- BitmapInitialize.cs
- ComponentResourceKey.cs
- Encoding.cs
- EntryWrittenEventArgs.cs
- GatewayIPAddressInformationCollection.cs
- MDIWindowDialog.cs
- RegexBoyerMoore.cs
- ProtectedConfigurationSection.cs
- SqlDelegatedTransaction.cs
- SqlProviderManifest.cs
- IRCollection.cs
- SqlWebEventProvider.cs
- DBCommand.cs
- DateTimeOffset.cs
- EnumValAlphaComparer.cs
- Int64Storage.cs
- MembershipUser.cs
- CellPartitioner.cs
- CodeDelegateCreateExpression.cs
- TrackPoint.cs
- CellQuery.cs
- ProfilePropertyNameValidator.cs
- WebPartCatalogAddVerb.cs
- CodeAttributeArgument.cs
- EntityModelSchemaGenerator.cs
- MsmqIntegrationChannelListener.cs
- TemplateColumn.cs
- JoinGraph.cs
- AttributeUsageAttribute.cs
- TemplateAction.cs
- PointCollection.cs
- SolidColorBrush.cs
- TabletDeviceInfo.cs
- WebPartDeleteVerb.cs
- PointAnimationUsingKeyFrames.cs
- PropertyTabAttribute.cs
- CaseStatementSlot.cs
- ObjectView.cs
- UserPreferenceChangedEventArgs.cs
- ProcessThreadCollection.cs
- SocketElement.cs
- IdnMapping.cs
- Attributes.cs
- NavigatorOutput.cs
- TimeoutHelper.cs
- HttpHandlerActionCollection.cs
- SerializationException.cs
- CopyOfAction.cs
- PropertyPushdownHelper.cs
- MergablePropertyAttribute.cs
- DynamicDiscoSearcher.cs
- HtmlElementEventArgs.cs
- RegisteredArrayDeclaration.cs
- QuotedStringWriteStateInfo.cs
- RulePatternOps.cs
- HTTPNotFoundHandler.cs
- KeyValueConfigurationElement.cs
- TableCell.cs
- DataError.cs
- BufferedGraphics.cs
- ReferentialConstraint.cs
- PersonalizableAttribute.cs
- WSDualHttpBindingElement.cs
- PenThreadWorker.cs
- IApplicationTrustManager.cs
- MemoryRecordBuffer.cs
- DataTableExtensions.cs
- COMException.cs
- DataRelationPropertyDescriptor.cs
- RadioButtonList.cs
- UpdateProgress.cs
- BooleanFunctions.cs
- ServerIdentity.cs
- Expressions.cs
- TimeStampChecker.cs
- Blend.cs
- ErrorWebPart.cs
- SparseMemoryStream.cs
- XmlNode.cs
- FlowPosition.cs
- HtmlContainerControl.cs
- XmlTextReader.cs
- PcmConverter.cs
- FontSizeConverter.cs
- TraceContext.cs
- StateFinalizationDesigner.cs
- Events.cs
- ConditionalWeakTable.cs
- FileDialogCustomPlaces.cs
- _Events.cs
- PriorityBindingExpression.cs
- ObjectQuery.cs
- NullableBoolConverter.cs
- AppDomain.cs
- ControlCachePolicy.cs
- Validator.cs
- DocumentGridContextMenu.cs