Is it possible to list JSInvokable Methods on Blazor Server from Client-Side?

36 views Asked by At

According to JS InterOP in Blazor we can call .NET methods from JS by calling method DotNet.invokeMethodAsync('BlazorSample', 'ReturnArrayAsync') where the first argument is the Assembly name and second is the .NET method name.

If we have access to a Blazor server app in browser; can we check the Assembly Name and list all the JSInvokable methods available to us in Developer tools? Assuming we don't have access to the source code.

0

There are 0 answers