|
// 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.Reflection.Context.Delegation
{
internal class DelegatingManifestResourceInfo : ManifestResourceInfo
{
public DelegatingManifestResourceInfo(ManifestResourceInfo resource)
: base(resource.ReferencedAssembly, resource.FileName, resource.ResourceLocation)
{
Debug.Assert(null != resource);
UnderlyingResource = resource;
}
public ManifestResourceInfo UnderlyingResource { get; }
}
}
|