PostSharpAPI ReferencePost­Sharp.​AspectsLocation­Interception­ArgsProceed­Get­Value
Open sandboxFocus

LocationInterceptionArgs.ProceedGetValue Method

ProceedGetValue()

Invokes the Get Location Value semantic on the next node in the chain of invocation and stores the location value in the Value property.

Declaration
public abstract void ProceedGetValue()
Implements
ILocationInterceptionArgs.ProceedGetValue()
Remarks

Note that this method overwrites the content of the Value property. Therefore, you should not call this invoke from a OnSetValue(LocationInterceptionArgs) advice unless you store the value before. If you need to retrieve the current value of the location from a OnSetValue(LocationInterceptionArgs) advice, it is recommended you use the GetCurrentValue() method.


note

This method is designed to be invoked during the execution of the advice. If you need to retrieve or store the value of the location at a different time, it is recommended to use the Binding . Indeed, a binding is stateless, while LocationInterceptionArgs instances may be shared among different aspects.