예제 #1
0
 public FileServerLocal(string strLocalStoragePath, string strLocalHostedURL)
 {
     Settings = new FileServerSettings();
     Settings.LocalStoragePath = strLocalStoragePath;
     Settings.LocalHostedURL   = strLocalHostedURL;
     CleanupPaths();
 }
예제 #2
0
 public FileServerAzure(FileServerSettings objSettings, CloudStorageAccount objCDNClient)
     : base(objSettings)
 {
     AzureStorageAccount = objCDNClient;
 }
예제 #3
0
 public FileServerAzure(FileServerSettings objSettings)
     : base(objSettings)
 {
 }
예제 #4
0
 public FileServerAmazonS3(FileServerSettings objSettings, AmazonS3Client objCDNClient)
     : base(objSettings)
 {
     S3Client = objCDNClient;
 }
예제 #5
0
 public FileServerAmazonS3(FileServerSettings objSettings)
     : base(objSettings)
 {
 }
예제 #6
0
 public FileServerLocal(string strLocalStoragePath, string strLocalHostedURL)
 {
     Settings = new FileServerSettings();
     Settings.LocalStoragePath = strLocalStoragePath;
     Settings.LocalHostedURL = strLocalHostedURL;
     CleanupPaths();
 }
예제 #7
0
 public FileServerLocal(FileServerSettings objSettings)
 {
     Settings = objSettings;
     CleanupPaths();
 }
예제 #8
0
 public FileServerLocal(bool DisableLocalStorage)
 {
     Settings = new FileServerSettings();
     Settings.DisableLocalStorage = DisableLocalStorage;
     CleanupPaths();
 }
예제 #9
0
 public FileServerLocal(FileServerSettings objSettings)
 {
     Settings = objSettings;
     CleanupPaths();
 }
예제 #10
0
 public FileServerAmazonS3(FileServerSettings objSettings, AmazonS3Client objCDNClient)
     : base(objSettings)
 {
     S3Client = objCDNClient;
 }
예제 #11
0
        public FileServerAmazonS3(FileServerSettings objSettings)
            : base(objSettings)
        {

        }