The method I want to collect the return value on is defined as such:
public T GetFromSession<T>(string key) {}
When I specify the method in the data collector, should I use GetFromSession, GetFromSession<T>, or GetFromSession<Dictionary<string, string>> (this is the call to this method I'm interested in) ?
The method I want to collect the return value on is defined as such:
public T GetFromSession<T>(string key) {}
When I specify the method in the data collector, should I use GetFromSession, GetFromSession<T>, or GetFromSession<Dictionary<string, string>> (this is the call to this method I'm interested in) ?
Hi ,
Please try GetFromSession`1 as method name. Let us know if it does not work.
Thanks,
Raunak
Hi Raunak,
Unfortuneately that also did not work.
Thanks!