public void ShowProgressMessage(string message)
 {
     // Ignore the error code.  This page is transient and it's not the end of the world if this doesn't show up.
     HR hr = _npp.ShowProgressMessage(message);
 }
 public void UpdateProgress(long bytesDownloaded, long bytesTotal)
 {
     // Ignore the error code.  This page is transient and it's not the end of the world if this doesn't show up.
     HR hr = _npp.OnDownloadProgress((ulong)bytesDownloaded, (ulong)bytesTotal);
 }