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
- ElementHost.cs
- SqlReferenceCollection.cs
- TransformerInfo.cs
- FormClosedEvent.cs
- BrowserCapabilitiesFactory.cs
- ResourceBinder.cs
- IsolatedStorageFileStream.cs
- ScriptRegistrationManager.cs
- WebPartAuthorizationEventArgs.cs
- TileBrush.cs
- FileDialog_Vista_Interop.cs
- URLString.cs
- CompatibleIComparer.cs
- PenThread.cs
- PlaceHolder.cs
- MasterPage.cs
- SQLInt64.cs
- WebConfigurationManager.cs
- XPathParser.cs
- MergePropertyDescriptor.cs
- HttpListenerContext.cs
- MimeMapping.cs
- BaseCAMarshaler.cs
- X509CertificateCollection.cs
- XmlSchemaAppInfo.cs
- DebugView.cs
- ControlBuilderAttribute.cs
- ChoiceConverter.cs
- HGlobalSafeHandle.cs
- AuthorizationSection.cs
- DataGridViewTopLeftHeaderCell.cs
- Baml2006KnownTypes.cs
- TypedElement.cs
- MarkupObject.cs
- SspiWrapper.cs
- SourceItem.cs
- ProcessHostFactoryHelper.cs
- DashStyle.cs
- TableCell.cs
- SoapProtocolReflector.cs
- FunctionImportElement.cs
- RelationshipEndCollection.cs
- HostedTransportConfigurationManager.cs
- HealthMonitoringSection.cs
- HttpServerUtilityBase.cs
- QualifiedCellIdBoolean.cs
- StylusLogic.cs
- EventMappingSettingsCollection.cs
- BasicViewGenerator.cs
- PolyBezierSegment.cs
- RewritingPass.cs
- TreeNodeBindingCollection.cs
- UpdateCommand.cs
- WinFormsComponentEditor.cs
- ValidatorCollection.cs
- ToolTipService.cs
- DoubleIndependentAnimationStorage.cs
- DataGridViewElement.cs
- SQLInt32.cs
- ListViewDataItem.cs
- ToolStripItemRenderEventArgs.cs
- SmiGettersStream.cs
- RegexInterpreter.cs
- SoapFormatExtensions.cs
- GeneralTransform3DGroup.cs
- CultureNotFoundException.cs
- OutputCacheSettingsSection.cs
- ControlEvent.cs
- GlyphInfoList.cs
- RepeatInfo.cs
- OracleConnectionStringBuilder.cs
- PerformanceCountersElement.cs
- COM2IPerPropertyBrowsingHandler.cs
- IndexedString.cs
- sqlser.cs
- WebSysDisplayNameAttribute.cs
- SqlCrossApplyToCrossJoin.cs
- PageBuildProvider.cs
- BindingEntityInfo.cs
- PrivilegeNotHeldException.cs
- DataTransferEventArgs.cs
- BindingManagerDataErrorEventArgs.cs
- VScrollProperties.cs
- ConditionChanges.cs
- TdsParserHelperClasses.cs
- CounterSampleCalculator.cs
- QilInvokeEarlyBound.cs
- ParentQuery.cs
- GridViewItemAutomationPeer.cs
- HandlerWithFactory.cs
- OdbcInfoMessageEvent.cs
- ExtensionFile.cs
- DbConnectionInternal.cs
- GenericRootAutomationPeer.cs
- WeakReferenceEnumerator.cs
- JoinGraph.cs
- ChangePassword.cs
- SystemColors.cs
- PageStatePersister.cs
- MatrixTransform.cs