Click or drag to resize

RegisterChildrenAttributeOnSet Method

Invoked if the intercepted property setter has been called

Namespace:  Cauldron.XAML.ViewModels
Assembly:  Cauldron.Win32.WPF (in Cauldron.Win32.WPF.dll) Version: 3.2.0.1 (3.2.0.1)
Syntax
C#
public bool OnSet(
	PropertyInterceptionInfo propertyInterceptionInfo,
	Object oldValue,
	Object newValue
)

Parameters

propertyInterceptionInfo
Type: Cauldron.InterceptionPropertyInterceptionInfo
An object that containes information about the intercepted method
oldValue
Type: SystemObject
The current value of the property
newValue
Type: SystemObject
The to be new value of the property

Return Value

Type: Boolean
If returns false, the backing field will be set to newValue

Implements

IPropertySetterInterceptorOnSet(PropertyInterceptionInfo, Object, Object)
See Also