コード例 #1
0
ファイル: ShellSettings.cs プロジェクト: vebin/Brochard
        public ShellSettings(
            string name, TenantState tenantState)
        {
            RootConfiguration = new ConfigurationRoot(new[] { new InternalConfigurationSource() });

            Name = name;
            State = tenantState;
        }
コード例 #2
0
ファイル: ShellSettings.cs プロジェクト: vebin/Brochard
        public ShellSettings(ShellSettings settings)
        {
            RootConfiguration = new ConfigurationRoot(new[] { new InternalConfigurationSource() });

            Name = settings.Name;
            RequestUrlHost = settings.RequestUrlHost;
            RequestUrlPrefix = settings.RequestUrlPrefix;
            State = settings.State;
        }
コード例 #3
0
ファイル: ShellSettings.cs プロジェクト: vebin/Brochard
 public ShellSettings()
 {
     RootConfiguration = new ConfigurationRoot(new[] { new InternalConfigurationSource() });
     State = TenantState.Invalid;
 }