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.