ILocationInterceptionAspect Interface |
Runtime semantics of an aspect that, when applied on a location (field or property), intercepts invocations of
the Get (OnGetValue(LocationInterceptionArgs)) and Set (OnSetValue(LocationInterceptionArgs)) semantics.
Namespace: PostSharp.Aspects
Assembly: PostSharp (in PostSharp.dll) Version: 6.10.10.0 (6.10.10.0)
C#
public interface ILocationInterceptionAspect : ILocationLevelAspect, IAspect
The ILocationInterceptionAspect type exposes the following members.
Name | Description | |
---|---|---|
OnGetValue |
Method invoked instead of the Get semantic of the field or property to which the current aspect is applied,
i.e. when the value of this field or property is retrieved.
| |
OnSetValue |
Method invoked instead of the Set semantic of the field or property to which the current aspect is applied,
i.e. when the value of this field or property is changed.
| |
RuntimeInitialize |
Initializes the current aspect.
(Inherited from ILocationLevelAspect.) |
See LocationInterceptionAspect for details.