1
1
// Licensed to the .NET Foundation under one or more agreements.
2
2
// The .NET Foundation licenses this file to you under the MIT license.
3
3
4
+ using System . Diagnostics . CodeAnalysis ;
4
5
using Microsoft . JSInterop . Implementation ;
5
6
using Microsoft . JSInterop . Infrastructure ;
6
7
@@ -74,6 +75,11 @@ protected override void BeginInvokeJS(JSInvocationInfo invocationInfo)
74
75
BeginInvokeJSInvocationCount ++ ;
75
76
}
76
77
78
+ protected override void BeginInvokeJS ( long taskId , string identifier , [ StringSyntax ( "Json" ) ] string ? argsJson , JSCallResultType resultType , long targetInstanceId )
79
+ {
80
+ throw new NotImplementedException ( ) ;
81
+ }
82
+
77
83
protected internal override void EndInvokeDotNet ( DotNetInvocationInfo invocationInfo , in DotNetInvocationResult invocationResult )
78
84
{
79
85
}
@@ -87,13 +93,23 @@ protected override void BeginInvokeJS(JSInvocationInfo invocationInfo)
87
93
{
88
94
}
89
95
90
- protected override string ? InvokeJS ( string identifier , string ? argsJson , JSCallResultType resultType , long targetInstanceId )
96
+ protected override void BeginInvokeJS ( long taskId , string identifier , [ StringSyntax ( "Json" ) ] string ? argsJson , JSCallResultType resultType , long targetInstanceId )
97
+ {
98
+ throw new NotImplementedException ( ) ;
99
+ }
100
+
101
+ protected override string ? InvokeJS ( JSInvocationInfo invocationInfo )
91
102
{
92
103
InvokeJSInvocationCount ++ ;
93
104
94
105
return null ;
95
106
}
96
107
108
+ protected override string ? InvokeJS ( string identifier , string ? argsJson , JSCallResultType resultType , long targetInstanceId )
109
+ {
110
+ throw new NotImplementedException ( ) ;
111
+ }
112
+
97
113
protected internal override void EndInvokeDotNet ( DotNetInvocationInfo invocationInfo , in DotNetInvocationResult invocationResult )
98
114
{
99
115
}
0 commit comments