DeviceDetector.NET icon indicating copy to clipboard operation
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.

Results 20 DeviceDetector.NET issues
Sort by recently updated
recently updated
newest added

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...

question
wontfix
detection improvements

For cross check: https://devicedetector.lw1.at https://iehol.sse.codesandbox.io

wontfix

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...

help wanted

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...

enhancement

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...

bug

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]+)'...

enhancement
help wanted

Hi, we added DeviceDetectorNET 4.3 to our project and this is what the memory profiler show us ![image](https://user-images.githubusercontent.com/28841791/139944745-4f8dfd43-7897-4197-a2bd-f685c1108454.png) Sample of instance ![image](https://user-images.githubusercontent.com/28841791/139944801-9c992eb8-3b2c-45fc-9fd2-2165de1e80f0.png)

help wanted

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...

help wanted

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...

question

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...