| File: System\Configuration\FactoryId.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. using System.Diagnostics; namespace System.Configuration { // Identifies a factory [DebuggerDisplay("FactoryId {ConfigKey}")] internal sealed class FactoryId { internal FactoryId(string configKey, string group, string name) { ConfigKey = configKey; Group = group; Name = name; } internal string ConfigKey { get; } internal string Group { get; } internal string Name { get; } } }