File: System\Reflection\Context\Custom\CustomAssembly.cs
Web Access
Project: src\src\libraries\System.Reflection.Context\src\System.Reflection.Context.csproj (System.Reflection.Context)
// 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.Context.Projection;
 
namespace System.Reflection.Context.Custom
{
    internal sealed class CustomAssembly : ProjectingAssembly
    {
        public CustomAssembly(Assembly template, CustomReflectionContext context)
            : base(template, context.Projector)
        {
            ReflectionContext = context;
        }
 
        public CustomReflectionContext ReflectionContext { get; }
    }
}