public TValue Invoke <TValue>(string identifier, params object?[]?args)
        {
            ThrowIfDisposed();

            return(_jsRuntime.Invoke <TValue>(identifier, Id, args));
        }
Exemplo n.º 2
0
        public TValue Invoke <[DynamicallyAccessedMembers(JsonSerialized)] TValue>(string identifier, params object?[]?args)
        {
            ThrowIfDisposed();

            return(_jsRuntime.Invoke <TValue>(identifier, Id, args));
        }
Exemplo n.º 3
0
 static T Invoke <T>(string identifier, params object[] args)
 => _jSRuntime.Invoke <T>(identifier, args);