I'm trying to get the browser information from the user in a Blazor Server application. For this I use the Nuget Package Wangkanai.Detection 6.10. Apparently Blazor support has been added, but the user-agent-string is always used from the server and not from the client.
I have get the *user-agent* from the client
window.GetUserAgent = () => {
return navigator.userAgent;
}
Is there a way to set the user agent string?