示例#1
0
 protected void Session_Start(object sender, EventArgs e)
 {
     try
     {
         DriveLetter = AzureDrive.Mount();
     }
     catch (Exception ex)
     {
         Logger.LogError("Error mounting azure drive: ", ex);
     }
 }
示例#2
0
 protected void Application_End(object sender, EventArgs e)
 {
     AzureDrive.UnMount();
 }