4 references to ParamValues
Microsoft.Maui (4)
Handlers\HybridWebView\HybridWebViewHandler.cs (4)
226
if (invokeData.
ParamValues
!= null && invokeMethod.GetParameters().Length != invokeData.
ParamValues
.Length)
228
throw new InvalidOperationException($"The number of parameters on {nameof(jsInvokeTarget)}'s method {invokeData.MethodName} ({invokeMethod.GetParameters().Length}) doesn't match the number of values passed from JavaScript code ({invokeData.
ParamValues
.Length}).");
232
invokeData.
ParamValues
?