Click or drag to resize
PropertyChangedRegistration Constructor
Initializes a new instance of the PropertyChangedRegistration class.

Namespace: Lawo.ComponentModel
Assembly: Lawo (in Lawo.dll) Version: 1.4.1707.27006
Syntax
C#
public PropertyChangedRegistration(
	PropertyChangedEventHandler handler,
	params IProperty<INotifyPropertyChanged>[] properties
)

Parameters

handler
Type: System.ComponentModelPropertyChangedEventHandler
The handler to which all change notifications are forwarded.
properties
Type: Lawo.ReflectionIPropertyINotifyPropertyChanged
The properties for which change notifications should be forwarded.
Exceptions
ExceptionCondition
ArgumentExceptionOne or more elements of properties equal null.
ArgumentNullExceptionhandler and/or properties equal null.
Remarks
After construction, each change to one of the properties in properties is forwarded to handler until Dispose is called.
See Also