| File: System\Composition\Debugging\DiscoveredPartDebuggerProxy.cs | Web Access |
| Project: src\runtime\src\libraries\System.Composition.TypedParts\src\System.Composition.TypedParts.csproj (System.Composition.TypedParts) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Collections.Generic; using System.Composition.TypedParts.Discovery; using System.Linq; using System.Reflection; namespace System.Composition.Debugging { internal sealed class DiscoveredPartDebuggerProxy { private readonly DiscoveredPart _discoveredPart; public DiscoveredPartDebuggerProxy(DiscoveredPart discoveredPart) { _discoveredPart = discoveredPart; } public Type PartType { get { return _discoveredPart.PartType.AsType(); } } public DiscoveredExport[] Exports { get { return _discoveredPart.DiscoveredExports.ToArray(); } } public IDictionary<string, object> PartMetadata { get { return _discoveredPart.GetPartMetadata(PartType.GetTypeInfo()); } } } }