Aura.Shared.Util.Configuration.BaseConf.LoadDefault C# (CSharp) Méthode

LoadDefault() protected méthode

Loads several conf files that are generally required, like log, database, etc.
protected LoadDefault ( ) : void
Résultat void
		protected void LoadDefault()
		{
			this.Log.Load();
			this.Database.Load();
			this.Localization.Load();
			this.Internal.Load();
			this.Premium.Load();

			if (this.Internal.Password == "change_me")
				Aura.Shared.Util.Log.Warning("Using the default inter server password is risky, please change it in 'inter.conf'.");
		}