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

        }