ExtensionMethods.RemovePropertyChangeHandler<T> Method (T, DependencyProperty, EventHandler)

Microsoft internal use only.

Namespace:  Microsoft.VisualStudio.PlatformUI
Assembly:  Microsoft.VisualStudio.Shell.12.0 (in Microsoft.VisualStudio.Shell.12.0.dll)

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Sub RemovePropertyChangeHandler(Of T As DependencyObject) ( _
    instance As T, _
    property As DependencyProperty, _
    handler As EventHandler _
)
public static void RemovePropertyChangeHandler<T>(
    this T instance,
    DependencyProperty property,
    EventHandler handler
)
where T : DependencyObject
[ExtensionAttribute]
public:
generic<typename T>
where T : DependencyObject 
static void RemovePropertyChangeHandler(
    T instance, 
    DependencyProperty^ property, 
    EventHandler^ handler
)
static member RemovePropertyChangeHandler : 
        instance:'T * 
        property:DependencyProperty * 
        handler:EventHandler -> unit   when 'T : DependencyObject
JScript does not support generic types or methods.

Type Parameters

  • T
    The type of object being bound.

Parameters

  • instance
    Type: T

    The instance whose property change will no longer be handled.

  • property
    Type: DependencyProperty

    The property whose change will no longer be handled.

  • handler
    Type: EventHandler

    The method to be removed

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type T. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

.NET Framework Security

See Also

Reference

ExtensionMethods Class

RemovePropertyChangeHandler Overload

Microsoft.VisualStudio.PlatformUI Namespace