An alternative to UBB.threads
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Configuration;
|
|
|
|
|
|
|
|
|
|
namespace FLocal.IISUploadHandler {
|
|
|
|
|
class Config {
|
|
|
|
|
|
|
|
|
|
public static readonly Config instance = new Config();
|
|
|
|
|
|
|
|
|
|
public readonly string salt;
|
|
|
|
|
public readonly string storageDir;
|
|
|
|
|
|
|
|
|
|
private Config() {
|
|
|
|
|
var appSettings = ConfigurationManager.AppSettings;
|
|
|
|
|
this.salt = appSettings["salt"];
|
|
|
|
|
this.storageDir = appSettings["storageDir"];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|