internal void AddAllowedDownloadHost(string host)
 {
     if (!this._allowedDownloadHosts.Contains(host))
     {
         this._allowedDownloadHosts.Add(host);
         SdkUIUtilities.StoreObject <List <string> >(this._allowedDownloadHosts, AllowedDownloadHostsFileName);
     }
 }
 internal void AddAllowedDownloadHost(string host)
 {
     _allowedDownloadHosts.Add(host);
     SdkUIUtilities.StoreObject <List <string> >(_allowedDownloadHosts, AllowedDownloadHostsFileName);
 }