DeviceDetector.NET
DeviceDetector.NET copied to clipboard
The Universal Device Detection library will parse any User Agent and detect the browser, operating system, device used (desktop, tablet, mobile, tv, cars, console, etc.), brand and model.
Palo Alto Expanse Bot user-agent string is just a sentence Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers' presences...
For cross check: https://devicedetector.lw1.at https://iehol.sse.codesandbox.io
I checked PHP implementation and the `mobiles.yml` cover a lot more devices. https://github.com/matomo-org/device-detector/blob/master/regexes/device/mobiles.yml The file used in this library is the same, but it is outdated since August 2021 Is...
https://blog.chromium.org/2021/05/update-on-user-agent-string-reduction.html and https://wicg.github.io/ua-client-hints/ So like everything, its out with the old, and in with the new. The snag is that Client Hints appears to be a very complicated solution to...
Code USed: Startup.cs DeviceDetector.SetVersionTruncation(VersionTruncation.VERSION_TRUNCATION_NONE); var userAgent = context.Request.Headers["User-Agent"]; var deviceDetector = new DeviceDetector(userAgent); deviceDetector.Parse(); Issue encounter: System.InvalidOperationException: Operations that change non-concurrent collections must have exclusive access. A concurrent update was...
The latest yml files from the PHP project now include a versions property in the oss.yml file. ` #webOS regex: '(?:Web0S; .*WEBOS|webOS|web0S|Palm webOS|hpwOS)(?:[/]?(\d+[.\d]+))?' name: 'webOS' version: '$1' versions: regex: 'WEBOS(\d+[.\d]+)'...
Hi, we added DeviceDetectorNET 4.3 to our project and this is what the memory profiler show us  Sample of instance 
I wanted to first thank you for a wonderful library and API. It is well-designed and easy to use. It is, in fact, exactly what I am looking for. The...
Had a quick look at the new caching implementation. The implemented LRU (least recently used) cache looks more like a most used cache (with a hint of least recently added...
Hi, I am currently using something custom to detect user device and I would like to upgrade to a deeper test with DeviceDetector.NET, is it possible to do this directly...