22 lines
693 B
C#
22 lines
693 B
C#
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using System;
|
|
using Microsoft.JSInterop.Infrastructure;
|
|
|
|
namespace Microsoft.JSInterop
|
|
{
|
|
internal class TestJSRuntime : JSRuntime
|
|
{
|
|
protected override void BeginInvokeJS(long asyncHandle, string identifier, string argsJson)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
protected internal override void EndInvokeDotNet(DotNetInvocationInfo invocationInfo, in DotNetInvocationResult invocationResult)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|