| File: System\ComponentModel\Composition\ReflectionModel\IReflectionPartCreationInfo.cs | Web Access |
| Project: src\runtime\src\libraries\System.ComponentModel.Composition\src\System.ComponentModel.Composition.csproj (System.ComponentModel.Composition) |
// 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.ComponentModel.Composition.Primitives; using System.Reflection; namespace System.ComponentModel.Composition.ReflectionModel { internal interface IReflectionPartCreationInfo : ICompositionElement { Type GetPartType(); Lazy<Type> GetLazyPartType(); ConstructorInfo? GetConstructor(); IDictionary<string, object?>? GetMetadata(); IEnumerable<ExportDefinition> GetExports(); IEnumerable<ImportDefinition> GetImports(); bool IsDisposalRequired { get; } bool IsIdentityComparison { get; } } }