예제 #1
0
파일: Global.asax.cs 프로젝트: iqman/MACMSC
 protected void Session_Start(object sender, EventArgs e)
 {
     try
     {
         DriveLetter = AzureDrive.Mount();
     }
     catch (Exception ex)
     {
         Logger.LogError("Error mounting azure drive: ", ex);
     }
 }
예제 #2
0
파일: Global.asax.cs 프로젝트: iqman/MACMSC
 protected void Application_End(object sender, EventArgs e)
 {
     AzureDrive.UnMount();
 }