private static void FileManagerDownloading(object sender, FileManagerDownloadingEventArgs e)
 {
     SaveEventInfo(new Dictionary <string, object>
     {
         { "Event Type", "Downloading" },
         { "Path", e.Folder.FullPath },
         { "Downloading Items", e.ItemNames },
         { "Downloading File Name", e.DownloadFileName },
         { "Opening in browser", e.OpenInBrowser }
     });
 }
 private static void FileManagerDownloading(object sender, FileManagerDownloadingEventArgs e)
 {
     SaveEventInfo(new Dictionary<string, object>
         {
             {"Event Type", "Downloading"},
             {"Path", e.Folder.FullPath},
             {"Downloading Items", e.ItemNames},
             {"Downloading File Name", e.DownloadFileName},
             {"Opening in browser", e.OpenInBrowser}
         });
 }