Code:
                         / 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Base / System / Collections / Specialized / CollectionChangedEventManager.cs / 1305600 / 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) 
        { 
            if (source == null)
                throw new ArgumentNullException("source"); 
            if (listener == null)
                throw new ArgumentNullException("listener");
            CurrentManager.ProtectedAddListener(source, listener); 
        }
 
        ///  
        /// Remove a listener to the given source's event.
        ///   
        public static void RemoveListener(INotifyCollectionChanged source, IWeakEventListener listener)
        {
            /* for app-compat, allow RemoveListener(null, x) - it's a no-op (see Dev10 796788)
            if (source == null) 
                throw new ArgumentNullException("source");
            */ 
            if (listener == null) 
                throw new ArgumentNullException("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) 
        { 
            if (source == null)
                throw new ArgumentNullException("source"); 
            if (listener == null)
                throw new ArgumentNullException("listener");
            CurrentManager.ProtectedAddListener(source, listener); 
        }
 
        ///  
        /// Remove a listener to the given source's event.
        ///   
        public static void RemoveListener(INotifyCollectionChanged source, IWeakEventListener listener)
        {
            /* for app-compat, allow RemoveListener(null, x) - it's a no-op (see Dev10 796788)
            if (source == null) 
                throw new ArgumentNullException("source");
            */ 
            if (listener == null) 
                throw new ArgumentNullException("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
- DiagnosticsConfiguration.cs
- KnownBoxes.cs
- SerializationHelper.cs
- ComplexPropertyEntry.cs
- EventItfInfo.cs
- OutputCacheModule.cs
- ContentFileHelper.cs
- Separator.cs
- XmlNotation.cs
- AvTrace.cs
- FormViewUpdatedEventArgs.cs
- XmlCodeExporter.cs
- DataContractSerializerOperationGenerator.cs
- DocumentGridContextMenu.cs
- ExtenderControl.cs
- GcSettings.cs
- RefType.cs
- NotSupportedException.cs
- HwndProxyElementProvider.cs
- TableCellAutomationPeer.cs
- DocumentSequenceHighlightLayer.cs
- XsdBuildProvider.cs
- SecurityRuntime.cs
- TimeSpanMinutesOrInfiniteConverter.cs
- CryptoConfig.cs
- ExtensionDataObject.cs
- XappLauncher.cs
- UserControl.cs
- RuntimeHandles.cs
- CookieParameter.cs
- EventMappingSettings.cs
- ComponentResourceKey.cs
- Bits.cs
- PolicyManager.cs
- GroupBox.cs
- FlowDocumentReaderAutomationPeer.cs
- CodeGenerator.cs
- BufferedOutputAsyncStream.cs
- FixedPageAutomationPeer.cs
- ImageFormatConverter.cs
- XMLUtil.cs
- CustomAttributeFormatException.cs
- Separator.cs
- StreamHelper.cs
- Nullable.cs
- DataFormats.cs
- UiaCoreTypesApi.cs
- InsufficientMemoryException.cs
- BooleanExpr.cs
- PartialTrustVisibleAssembly.cs
- SecurityManager.cs
- CodeChecksumPragma.cs
- RIPEMD160.cs
- ReferencedAssembly.cs
- PackUriHelper.cs
- HttpCookiesSection.cs
- RelatedImageListAttribute.cs
- GPRECTF.cs
- Image.cs
- DependsOnAttribute.cs
- UInt16Converter.cs
- CanonicalFontFamilyReference.cs
- MaterialGroup.cs
- PrintPreviewGraphics.cs
- GuidelineCollection.cs
- ProxyWebPartManagerDesigner.cs
- Effect.cs
- ConfigurationFileMap.cs
- MetadataCache.cs
- QueryAccessibilityHelpEvent.cs
- BindingManagerDataErrorEventArgs.cs
- DetailsViewDeletedEventArgs.cs
- SingleKeyFrameCollection.cs
- WsdlBuildProvider.cs
- DataControlLinkButton.cs
- CapabilitiesState.cs
- DebugView.cs
- SoapElementAttribute.cs
- DBCommandBuilder.cs
- XamlWriter.cs
- SafeFreeMibTable.cs
- ButtonDesigner.cs
- Directory.cs
- regiisutil.cs
- ListChangedEventArgs.cs
- Vector3D.cs
- CookieHandler.cs
- EditingCoordinator.cs
- SerializationInfoEnumerator.cs
- MenuItemCollectionEditor.cs
- Utils.cs
- AppDomainShutdownMonitor.cs
- PEFileEvidenceFactory.cs
- OperationPerformanceCounters.cs
- Repeater.cs
- dbenumerator.cs
- SqlUserDefinedTypeAttribute.cs
- WebRequestModulesSection.cs
- BindToObject.cs
- TypeDefinition.cs