ComponentOne Binding Expressions for WPF and Silverlight
C1.Silverlight.Binding Namespace / PropertyChangedEventManager Class / RemoveListener Method
The object with the event.
The object to remove as a listener.
The name of the property that exists on source upon which to listen for changes.

In This Topic
    RemoveListener Method
    In This Topic
    Removes the specified listener from the list of listeners on the specified source.
    Syntax
    'Declaration
     
    
    Public Shared Sub RemoveListener( _
       ByVal source As System.ComponentModel.INotifyPropertyChanged, _
       ByVal listener As IWeakEventListener, _
       ByVal propertyName As System.String _
    ) 
    public static void RemoveListener( 
       System.ComponentModel.INotifyPropertyChanged source,
       IWeakEventListener listener,
       System.string propertyName
    )

    Parameters

    source
    The object with the event.
    listener
    The object to remove as a listener.
    propertyName
    The name of the property that exists on source upon which to listen for changes.
    See Also