WeakEventManager.ListenerList Class (System.Windows)

Switch View :
ScriptFree
.NET Framework Class Library
WeakEventManager.ListenerList Class

Provides a built-in collection list for storing listeners for a WeakEventManager.

Inheritance Hierarchy

System.Object
  System.Windows.WeakEventManager.ListenerList

Namespace:  System.Windows
Assembly:  WindowsBase (in WindowsBase.dll)
XMLNS for XAML: http://schemas.microsoft.com/winfx/2006/xaml/presentation, http://schemas.microsoft.com/netfx/2007/xaml/presentation
Syntax

Visual Basic
Protected Class ListenerList
C#
protected class ListenerList
Visual C++
protected ref class ListenerList
F#
type ListenerList =  class end
XAML
You cannot use this class in XAML.

The WeakEventManager.ListenerList type exposes the following members.

Constructors

  Name Description
Public method WeakEventManager.ListenerList() Initializes a new instance of the WeakEventManager.ListenerList class.
Public method WeakEventManager.ListenerList(Int32) Initializes a new instance of the WeakEventManager.ListenerList class with the specified initial capacity.
Top
Properties

  Name Description
Public property Count Gets the number of items contained in the WeakEventManager.ListenerList.
Public property Static member Empty Gets a value that represents an empty list for purposes of comparisons.
Public property IsEmpty Gets a value that declares whether this WeakEventManager.ListenerList is empty.
Public property Item Gets or sets a specific listener item in the WeakEventManager.ListenerList .
Top
Methods

  Name Description
Public method Add Adds a listener item to the WeakEventManager.ListenerList.
Public method BeginUse Declares the list to be in use. This prevents direct changes to the list during iterations of the list items.
Public method Clone Creates a modifiable clone of this WeakEventManager.ListenerList, making deep copies of the values.
Public method EndUse Unlocks the locked state initiated by BeginUse.
Public method Equals(Object) Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected method Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Public method GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Protected method MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public method Static member PrepareForWriting Checks to see whether the provided list is in use, and if so, sets the list reference parameter to a copy of that list rather than the original.
Public method Purge Removes all entries from the list where the underlying reference target is a null reference.
Public method Remove Removes the first occurrence of a listener item from the WeakEventManager.ListenerList.
Public method ToString Returns a string that represents the current object. (Inherited from Object.)
Top
Remarks

Although this list contains members that resemble those defined by IList and ICollection, and provide similar functionality, this class implements neither of those interfaces.

Most WeakEventManager derived classes do not need to use any members on WeakEventManager.ListenerList. The WeakEventManager methods ProtectedAddListener and ProtectedRemoveListener use a default WeakEventManager.ListenerList internally, one list for each source.

You only need to call WeakEventManager.ListenerList methods if your WeakEventManager class maintains multiple lists for the same event-source combination, with each list created to account for different conditions of the event. In this case, you would not use ProtectedAddListener and ProtectedRemoveListener and would instead implement AddListener or RemoveListener to act upon listeners in just one of the internal listener lists, typically based on a parameter that you add to AddListener or RemoveListener. Also, the handler implementation that receives the raw event cannot simply call DeliverEvent; you must instead keep track of the specifics of the event and deliver the event only to the appropriate list using DeliverEventToList.

The various methods of WeakEventManager.ListenerList are provided so that you can work with your internal lists and so that you can prevent modification of the list during actual delivery of the event.

An example class that used this implementation technique is PropertyChangedEventManager, which maintains separate listener lists for PropertyChanged based on which property changed.

Version Information

.NET Framework

Supported in: 4, 3.5, 3.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1
Platforms

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
See Also

Reference

Other Resources