ILocationInterceptionArgs<T>.GetCurrentValue Method |
Retrieves the current value of the location without overwriting the Value property.
Namespace: PostSharp.Aspects
Assembly: PostSharp (in PostSharp.dll) Version: 6.10.10.0 (6.10.10.0)
C#
T GetCurrentValue()
Return Value
Type: TThe current value of the location, as returned by the next node in the chain of invocation (see Binding).
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. |