There are a number of options to tune auto send consent which can be done through your app.config or through code. Several fields have to be configured for auto send consent to be enabled:
Here is an example of how the consent dialog looks with the following set of options:
Example Auto Send Consent Configuration |
Copy Code
|
---|---|
e.Configuration.AutoSendConsent.Enabled = true; e.Configuration.AutoSendConsent.CompanyName = "Your Software Company"; e.Configuration.AutoSendConsent.ServiceName = "Customer Service Platform"; e.Configuration.AutoSendConsent.PrivacyPolicyUrl = "http://www.gibraltarsoftware.com"; e.Configuration.AutoSendConsent.PromptUserOnStartupLimit = 5; e.Configuration.AutoSendConsent.ConsentDefault = false; |
In this case the product name was "Your Product" and the application was "Your Application". The icon on the left will be pulled from your application executable when the dialog is displayed.