I created a constructor in attribute that gets parameters. In debug it does not reach the constructor and I also see that it does not receive the value I pass. It is not clear to me what I am missing and how the constructor is being skipped at all
ForExample:
public FOO() {}
public FOO(bool refresh)
{
refreshD = refresh;
}
public override void OnGetValue(LocationInterceptionArgs args)
{
if (refreshD)
{
...
}
}
the CalledProperty:
[FOO(refresh:true)]
public ...
