| File: System\Composition\TypedParts\ActivationFeatures\PropertyImportSite.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.Reflection; namespace System.Composition.TypedParts.ActivationFeatures { /// <summary> /// Represents a part property that is configured as an import. /// </summary> internal sealed class PropertyImportSite { private readonly PropertyInfo _pi; public PropertyImportSite(PropertyInfo pi) { _pi = pi; } public PropertyInfo Property { get { return _pi; } } public override string ToString() { return _pi.Name; } } }