Hello,
I am developing a plugin that should automatically switch profiles. I tried the two ways to do it according to the documentation.
With a string :
vaProxy.SwitchTo("My Profile");
With the Guid method. I got the guid from the expanded vap file :
Guid profile = new Guid("b7bb5371841347689100b236559f66cc");
vaProxy.SwitchTo(profile);
None of them work. What am I missing ?