I have an OnMethodBoundaryAspect attribute (PostSharp), I want to be able to use expression from attribute constructor that gets uses the methods parameters
Lets say something like this :
[MyAttribute(p => p.SomeProperty)]
public void DoSomething(Parameter parameter)
{
....
}
p is type Parameter
Is it possible?
Thanks