15 lines
352 B
C#
15 lines
352 B
C#
using AspClassic.Scripting.Runtime;
|
|
|
|
namespace AspClassic.Scripting.Hosting;
|
|
|
|
internal sealed class ScriptHostProxy : DynamicRuntimeHostingProvider
|
|
{
|
|
private readonly ScriptHost _host;
|
|
|
|
public override PlatformAdaptationLayer PlatformAdaptationLayer => _host.PlatformAdaptationLayer;
|
|
|
|
public ScriptHostProxy(ScriptHost host)
|
|
{
|
|
_host = host;
|
|
}
|
|
}
|