Hi there,
How do you set defaults for properties of a configurable add-in? I tried setting them in the constructor of an AddressValidatorProvider like this:
public MyAddressValidatorProvider()
{
ApiUrl = "http://my.url";
}
But then the user defined values are no longer applied and I see my defaults again when editing the add-in. Is there a way to detect if the add-in is configured for the first time? Or can I handle this some other way?
Imar