UAParser 3.1.32
See the version list below for details.
dotnet add package UAParser --version 3.1.32
NuGet\Install-Package UAParser -Version 3.1.32
<PackageReference Include="UAParser" Version="3.1.32" />
paket add UAParser --version 3.1.32
#r "nuget: UAParser, 3.1.32"
// Install UAParser as a Cake Addin #addin nuget:?package=UAParser&version=3.1.32 // Install UAParser as a Cake Tool #tool nuget:?package=UAParser&version=3.1.32
ua_parser C# Library
This is the CSharp implementation of ua-parser. You can find the latest binaries on NuGet here.
The implementation uses the shared regex patterns and overrides from regexes.yaml (found in uap-core). The assembly embeds the latest regex patterns (enabled through a git submodule) which are loaded into the default parser. You can create a parser with more updated regex patterns by using the static methods on Parser
to pass in specific patterns in yaml format.
Build and Run Tests:
Make sure you pull down the submodules that includes the yaml files (otherwise you won't be able to compile):
git submodule update --init --recursive
You can then build and run the tests by invoking the build.bat
script
.\build.bat
Update the embedded regexes
To pull the latest regexes into the project:
cd uap-core
git pull origin master
Usage:
using UAParser;
...
string uaString = "Mozilla/5.0 (iPhone; CPU iPhone OS 5_1_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9B206 Safari/7534.48.3";
// get a parser with the embedded regex patterns
var uaParser = Parser.GetDefault();
// get a parser using externally supplied yaml definitions
// var uaParser = Parser.FromYaml(yamlString);
ClientInfo c = uaParser.Parse(uaString);
Console.WriteLine(c.UserAgent.Family); // => "Mobile Safari"
Console.WriteLine(c.UserAgent.Major); // => "5"
Console.WriteLine(c.UserAgent.Minor); // => "1"
Console.WriteLine(c.OS.Family); // => "iOS"
Console.WriteLine(c.OS.Major); // => "5"
Console.WriteLine(c.OS.Minor); // => "1"
Console.WriteLine(c.Device.Family); // => "iPhone"
Authors:
- Søren Enemærke @sorenenemaerke / github
- Atif Aziz @raboof / github
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp1.0 was computed. netcoreapp1.1 was computed. netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard1.0 is compatible. netstandard1.1 was computed. netstandard1.2 was computed. netstandard1.3 is compatible. netstandard1.4 was computed. netstandard1.5 was computed. netstandard1.6 is compatible. netstandard2.0 was computed. netstandard2.1 was computed. |
.NET Framework | net45 was computed. 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. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen30 was computed. tizen40 was computed. tizen60 was computed. |
Universal Windows Platform | uap was computed. uap10.0 was computed. |
Windows Phone | wp8 was computed. wp81 was computed. wpa81 was computed. |
Windows Store | netcore was computed. netcore45 was computed. netcore451 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 1.0
- NETStandard.Library (>= 1.6.1)
-
.NETStandard 1.3
- NETStandard.Library (>= 1.6.1)
-
.NETStandard 1.6
- NETStandard.Library (>= 1.6.1)
NuGet packages (160)
Showing the top 5 NuGet packages that depend on UAParser:
Package | Downloads |
---|---|
FenixAlliance.ACL.Dependencies
Application Component for the Alliance Business Suite. |
|
Statsig
Statsig SDK for .NET server and client side applications. |
|
ImmediaC.SimpleCms
ASP.NET Core based CMS |
|
DiegoRangel.DotNet.Framework.CQRS.Infra.CrossCutting
A common library for implementing CQRS based CrossCutting layer. |
|
fion.modelerp.core
ModelErp |
GitHub repositories (24)
Showing the top 5 popular GitHub repositories that depend on UAParser:
Repository | Stars |
---|---|
ONLYOFFICE/CommunityServer
Free open source office suite with business productivity tools: document and project management, CRM, mail aggregator.
|
|
smartstore/SmartStoreNET
Open Source ASP.NET MVC Enterprise eCommerce Shopping Cart Solution
|
|
exceptionless/Exceptionless
Exceptionless application
|
|
servicetitan/Stl.Fusion
Build real-time apps (Blazor included) with less than 1% of extra code responsible for real-time updates. Host 10-1000x faster APIs relying on transparent and nearly 100% consistent caching. We call it DREAM, or Distributed REActive Memoization, and it's here to turn real-time on!
|
|
NuGet/NuGetGallery
NuGet Gallery is a package repository that powers https://www.nuget.org. Use this repo for reporting NuGet.org issues.
|
Version | Downloads | Last updated |
---|---|---|
3.1.47 | 11,196,148 | 5/26/2021 |
3.1.46 | 932,075 | 1/30/2021 |
3.1.44 | 4,449,770 | 2/14/2020 |
3.1.43 | 1,078,398 | 9/26/2019 |
3.1.42 | 46,971 | 9/20/2019 |
3.1.41 | 338,102 | 8/14/2019 |
3.1.40 | 6,559 | 8/13/2019 |
3.1.39 | 1,472 | 8/13/2019 |
3.1.38 | 540,587 | 5/29/2019 |
3.1.36 | 798,162 | 2/4/2019 |
3.1.35 | 177,229 | 12/15/2018 |
3.1.34 | 1,805 | 12/14/2018 |
3.1.32 | 22,601 | 12/1/2018 |
3.0.0 | 1,307,072 | 9/11/2017 |
2.1.0 | 1,113,950 | 12/9/2015 |
2.0.0 | 11,659 | 12/7/2015 |
1.2.0 | 157,742 | 10/9/2014 |
1.1.0 | 14,773 | 5/25/2014 |
1.0.2 | 15,224 | 1/31/2014 |
1.0.1 | 9,878 | 11/4/2013 |
1.0.0 | 22,871 | 1/4/2013 |