DeviceDetector.NET
3.9.2
See the version list below for details.
dotnet add package DeviceDetector.NET --version 3.9.2
NuGet\Install-Package DeviceDetector.NET -Version 3.9.2
<PackageReference Include="DeviceDetector.NET" Version="3.9.2" />
paket add DeviceDetector.NET --version 3.9.2
#r "nuget: DeviceDetector.NET, 3.9.2"
// Install DeviceDetector.NET as a Cake Addin #addin nuget:?package=DeviceDetector.NET&version=3.9.2 // Install DeviceDetector.NET as a Cake Tool #tool nuget:?package=DeviceDetector.NET&version=3.9.2
DeviceDetector.NET
Description
The Universal Device Detection library for .NET that parses User Agents and detects devices (desktop, tablet, mobile, tv, cars, console, etc.), clients (browsers, feed readers, media players, PIMs, ...), operating systems, brands and models. This is a port of the popular PHP device-detector library to C#. For the most part you can just follow the documentation for device-detector with no issue.
Usage
Using DeviceDetector.NET with nuget is quite easy. Just add DeviceDetector.NET to your projects requirements. And use some code like this one:
using DeviceDetectorNET;
// OPTIONAL: Set version truncation to none, so full versions will be returned
// By default only minor versions will be returned (e.g. X.Y)
// for other options see VERSION_TRUNCATION_* constants in DeviceParserAbstract class
DeviceDetector.SetVersionTruncation(VersionTruncation.VERSION_TRUNCATION_NONE);
dd = new DeviceDetector(userAgent);
// OPTIONAL: Set caching method
// By default static cache is used, which works best within one php process (memory array caching)
// To cache across requests use caching in files or memcache
dd.SetCache(new DictionaryCache());
// OPTIONAL: If called, GetBot() will only return true if a bot was detected (speeds up detection a bit)
dd.DiscardBotInformation();
// OPTIONAL: If called, bot detection will completely be skipped (bots will be detected as regular devices then)
dd.SkipBotDetection();
dd.Parse();
if(dd.IsBot()) {
// handle bots,spiders,crawlers,...
var botInfo = dd.GetBot();
} else {
var clientInfo = dd.GetClient(); // holds information about browser, feed reader, media player, ...
var osInfo = dd.GetOs();
var device = dd.GetDevice();
var brand = dd.GetBrandName();
var model = dd.GetModel();
}
Instead of using the full power of DeviceDetector it might in some cases be better to use only specific parsers. If you aim to check if a given useragent is a bot and don't require any of the other information, you can directly use the bot parser.
using DeviceDetectorNET.Parser;
var botParser = new BotParser();
botParser.SetUserAgent(userAgent);
// OPTIONAL: discard bot information. Parse() will then return true instead of information
botParser.DiscardDetails = true;
var result = botParser.Parse();
if (result != null) {
// do not do anything if a bot is detected
return;
}
// handle non-bot requests
.....
What Device Detector is able to detect
The lists below are auto generated and updated from time to time. Some of them might not be complete.
Last update: 2018/01/20
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net45 is compatible. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
.NETFramework 4.5
- YamlDotNet (>= 4.3.0)
NuGet packages (11)
Showing the top 5 NuGet packages that depend on DeviceDetector.NET:
Package | Downloads |
---|---|
Volo.Abp.AspNetCore
Package Description |
|
OneLine
OneLine is an abstraction standardized redefined framework. |
|
H.Necessaire.Runtime
A Core Framework for Rapid Application Development |
|
OneLine.Common
OneLine.Common is a project that can be used on a server backend as well on client side application that support net standard like xamarin or blazor. |
|
uMarketingSuite.Core
The all-in-one marketing solution for the Umbraco CMS - assemblies only |
GitHub repositories (2)
Showing the top 2 popular GitHub repositories that depend on DeviceDetector.NET:
Repository | Stars |
---|---|
abpframework/abp
Open-source web application framework for ASP.NET Core! Offers an opinionated architecture to build enterprise software solutions with best practices on top of the .NET. Provides the fundamental infrastructure, cross-cutting-concern implementations, startup templates, application modules, UI themes, tooling and documentation.
|
|
go2ismail/Asp.Net-Core-Inventory-Order-Management-System
ASP.NET Core Razor Pages implementation of inventory order management. Warehouse, product, vendor, customer, purchase order, sales order, shipment, goods receive and more
|
Version | Downloads | Last updated |
---|---|---|
6.3.3 | 834,257 | 3/19/2024 |
6.3.2 | 258 | 3/19/2024 |
6.3.1 | 50,694 | 2/29/2024 |
6.3.0 | 22,402 | 2/19/2024 |
6.2.0 | 108,563 | 1/3/2024 |
6.1.4 | 564,322 | 8/7/2023 |
6.1.0 | 245,753 | 3/5/2023 |
4.3.2 | 209,130 | 10/24/2022 |
4.3.1 | 1,291 | 10/24/2022 |
4.3.0 | 882,612 | 8/8/2021 |
4.2.0 | 562,438 | 7/26/2020 |
4.1.0 | 290,574 | 8/26/2019 |
4.0.0 | 31,834 | 7/5/2019 |
3.11.6 | 26,225 | 4/25/2019 |
3.11.4 | 82,795 | 12/31/2018 |
3.11.2 | 13,404 | 11/4/2018 |
3.9.2.2 | 20,581 | 2/28/2018 |
3.9.2.1 | 2,134 | 2/28/2018 |
3.9.2 | 2,253 | 2/9/2018 |
3.9.1 | 1,958 | 2/1/2018 |
3.8.1 | 4,562 | 1/29/2018 |