Click or drag to resize
EventExtensionMethods.RaiseEvent Method (PropertyChangedEventHandler, Object, String)
Raises the PropertyChanged event, if the handler isn't null, otherwise a no-op

Namespace:  SD.Tools.BCLExtensions.SystemRelated
Assembly:  SD.Tools.BCLExtensions (in SD.Tools.BCLExtensions.dll) Version: 1.1.1
Syntax
public static void RaiseEvent(
	this PropertyChangedEventHandler handler,
	Object sender,
	string propertyName
)

Parameters

handler
Type: System.ComponentModel.PropertyChangedEventHandler
The handler.
sender
Type: System.Object
The sender.
propertyName
Type: System.String
Name of the property.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type PropertyChangedEventHandler. 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).
See Also