| File: System\Configuration\Internal\InternalConfigConfigurationFactory.cs | Web Access |
| Project: src\runtime\src\libraries\System.Configuration.ConfigurationManager\src\System.Configuration.ConfigurationManager.csproj (System.Configuration.ConfigurationManager) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace System.Configuration.Internal { internal sealed class InternalConfigConfigurationFactory : IInternalConfigConfigurationFactory { private InternalConfigConfigurationFactory() { } Configuration IInternalConfigConfigurationFactory.Create( Type typeConfigHost, params object[] hostInitConfigurationParams) { return new Configuration(null, typeConfigHost, hostInitConfigurationParams); } string IInternalConfigConfigurationFactory.NormalizeLocationSubPath(string subPath, IConfigErrorInfo errorInfo) { return BaseConfigurationRecord.NormalizeLocationSubPath(subPath, errorInfo); } } }