PostSharpAPI ReferencePost­Sharp.​Aspects.​AdvicesOn­Location­Get­Value­Advice
Open sandboxFocus

OnLocationGetValueAdvice Class

Custom attribute that, when applied on a method of an aspect class, specifies that this method is an advice having the same semantics as OnGetValue(LocationInterceptionArgs).

Inheritance
OnLocationGetValueAdvice
Namespace: PostSharp.Aspects.Advices
Assembly: PostSharp.dll
Syntax
[RequiresLocationInterceptionAdviceAnalysis]
[RequiresDebuggerEnhancement]
public sealed class OnLocationGetValueAdvice : GroupingAdvice
Remarks

The method to which this custom attribute is applied must be public and must have the same signature as OnGetValue(LocationInterceptionArgs). However, it can be static.

If an aspect defines many advices (among OnLocationSetValueAdvice, OnLocationGetValueAdvice) and if these advices are meant to be applied to the same properties with consistent ordering, they should be grouped together (see Master property).

Standalone advices or group masters should also be annotated by a custom attribute derived from Pointcut.

Constructors

Name Description
OnLocationGetValueAdvice()

See Also