e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
27 lines
1.0 KiB
C#
27 lines
1.0 KiB
C#
//------------------------------------------------------------------------------
|
|
// <copyright file="InternalConfigSettingsFactory.cs" company="Microsoft">
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// </copyright>
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace System.Configuration.Internal {
|
|
|
|
using System.Configuration;
|
|
|
|
//
|
|
// Called by System.Web.HttpConfigurationSystem to set the configuration system
|
|
// in the ConfigurationSettings class.
|
|
//
|
|
internal sealed class InternalConfigSettingsFactory : IInternalConfigSettingsFactory {
|
|
private InternalConfigSettingsFactory() {}
|
|
|
|
void IInternalConfigSettingsFactory.SetConfigurationSystem(IInternalConfigSystem configSystem, bool initComplete) {
|
|
ConfigurationManager.SetConfigurationSystem(configSystem, initComplete);
|
|
}
|
|
|
|
void IInternalConfigSettingsFactory.CompleteInit() {
|
|
ConfigurationManager.CompleteConfigInit();
|
|
}
|
|
}
|
|
}
|