Click or drag to resize

IPropertyInterceptor Interface

Represents an interceptor that can intercept a property's getter and setter method. This interceptor can also be applied to abstract properties and all overriding methods will implement this interceptor.

Namespace:  Cauldron.Interception
Assembly:  Cauldron.Interception (in Cauldron.Interception.dll) Version: 1.0.0
Syntax
public interface IPropertyInterceptor : IPropertyGetterInterceptor, 
	IPropertySetterInterceptor

The IPropertyInterceptor type exposes the following members.

Methods
  NameDescription
Public methodOnException
Invoked if an intercepted method has raised an exception.
(Inherited from IPropertyGetterInterceptor.)
Public methodOnExit
Invoked if the intercepted method has finished executing.
(Inherited from IPropertyGetterInterceptor.)
Public methodOnGet
Invoked if the intercepted property getter has been called
(Inherited from IPropertyGetterInterceptor.)
Public methodOnSet
Invoked if the intercepted property setter has been called
(Inherited from IPropertySetterInterceptor.)
Top
See Also