Wangkanai.Detection 2.0.0

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Wangkanai.Detection --version 2.0.0                
NuGet\Install-Package Wangkanai.Detection -Version 2.0.0                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Wangkanai.Detection" Version="2.0.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Wangkanai.Detection --version 2.0.0                
#r "nuget: Wangkanai.Detection, 2.0.0"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Wangkanai.Detection as a Cake Addin
#addin nuget:?package=Wangkanai.Detection&version=2.0.0

// Install Wangkanai.Detection as a Cake Tool
#tool nuget:?package=Wangkanai.Detection&version=2.0.0                

ASP.NET Core Detection

GitHub Build status GitHub Open Collective Patreon

  • Wangkanai.Detection NuGet Badge NuGet Badge
  • Wangkanai.Responsive NuGet Badge NuGet Badge

Build history

ASP.NET Core client web browser detection extension to resolve devices, platforms, engine of the client.

ASP.NET Core Responsive middleware for routing base upon request client device detection to specific view

ASP.NET Core Responsive

Installation

Installation of detection library is now done with a single package reference point.

PM> install-package Wangkanai.Detection

Installation of Responsive library will bring in all dependency packages (This will include `Wangkanai.Detection.Device).

PM> install-package Wangkanai.Responsive

Configuration

This library host the component to resolve the access client device type.

Implement of the library into your web application is done by configuring the Startup.cs by adding the detection service in the ConfigureServices method.

public void ConfigureServices(IServiceCollection services)
{
	// Add detection services container and device resolver service.
    services.AddDetection();

    // Add framework services.
    services.AddMvc();
}
  • AddDetection() Adds the detection services to the services container.

If you would like to add Responsive is configured in the ConfigureServices method also:

public void ConfigureServices(IServiceCollection services)
{
    // Add responsive services.
    services.AddResponsive();

    // Add framework services.
    services.AddMvc();  
}

Or you can customize the responsive

public void ConfigureServices(IServiceCollection services)
{
    // Add responsive services.
    services.AddResponsive(options =>
    {
        options.View.DefaultTablet = DeviceType.Desktop;
        options.View.DefaultMobile = DeviceType.Desktop;
        options.View.DefaultDesktop = DeviceType.Desktop;
    });

    // Add framework services.
    services.AddMvc();  
}
  • AddResponsive() Adds the Responsive services to the services container.

    • Suffix Ex *views/[controller]/[action]/index.mobile.cshtml*
    • SubFoler Ex *views/[controller]/[action]/mobile/index.cshtml*

The current device on a request is set in the Responsive middleware. The Responsive middleware is enabled in the Configure method of Startup.cs file.

public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
{
    app.UseResponsive();

    app.UseMvc(routes =>
    {
        routes.MapRoute(
            name: "default",
            template: "{controller=Home}/{action=Index}/{id?}");
    });
}

Global Resolver

This library host the component to resolve all the access client related resolver that could resolve.

Example of calling the detection service in the Controller using dependency injection.

public class HomeController : Controller
{
    private readonly IDetection _detection;

    public HomeController(IDetection detection)
    {
        _detection = detection;
    }

    public IActionResult Index()
    {
        return View(_detection);
    }
}
  • IDetection is main service for you to access detection service.

When the Detection is pass to the view you can render results like the following example.

@model Wangkanai.Detection.Detection

<h3>UserAgent</h3>
<code>@Model.UserAgent</code>

<h3>Results</h3>

<table>
    <thead>
        <tr>
            <th>Resolver</th>
            <th>Type</th>
            <th>Version</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <th>Device</th>
            <td>@Model.Device?.Type.ToString()</td>
            <td></td>
        </tr>
        <tr>
            <th>Browser</th>
            <td>@Model.Browser?.Type.ToString()</td>
            <td>@Model.Browser?.Version</td>
        </tr>
        <tr>
            <th>Platform</th>
            <td>@Model.Platform?.Type.ToString()</td>
            <td>@Model.Platform?.Version</td>
        </tr>
        <tr>
            <th>Engine</th>
            <td>@Model.Engine?.Type.ToString()</td>
            <td>@Model.Engine?.Version</td>
        </tr>
        <tr>
            <th>Crawler</th>
            <td>@Model.Crawler?.Type.ToString()</td>
            <td>@Model.Crawler?.Version</td>
        </tr>
    </tbody>
</table>
Product 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 netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework 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 tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (14)

Showing the top 5 NuGet packages that depend on Wangkanai.Detection:

Package Downloads
WebVella.Erp.Web

The web components library for the open-source and free platform WebVella ERP. It allows a quick and painless creation of business web applications.

Wangkanai.Responsive

ASP.NET Core Responsive middleware for routing base upon request client device detection to specific view. Also in the added feature of user preference made this library even more comprehensive must for developers whom to target multiple devices with view rendered and optimized directly from the server side.

Wangkanai.Analytics

Embrace the power of data with Analytics, a .NET Core library for comprehensive website tracking. Delve into insightful statistics, understand your audience better, and make data-driven decisions with ease. From session duration to bounce rate, Analytics transforms raw data into meaningful insights. Join our community, shine a light on your website's performance, and let's unlock the full potential of website analytics with Analytics.

ZC.Middleware.DefaultAPI

Package Description

Wangkanai.Webmaster

Revolutionize your SEO with Wangkanai Webmaster. This ASP.NET Core tool boosts your site's traffic and visibility. Ideal for developers aiming to elevate their site's SEO. A must-have for enhanced web traffic, visibility, and efficiency

GitHub repositories (5)

Showing the top 5 popular GitHub repositories that depend on Wangkanai.Detection:

Repository Stars
grandnode/grandnode
Open source, headless, multi-tenant eCommerce platform built with .NET Core, MongoDB, AWS DocumentDB, Azure CosmosDB, Vue.js.
WebVella/WebVella-ERP
Free and open-source pluggable ERP and CRM software based on ASP.NET Core 8, RazorPages and PostgreSQL . Targets Linux or Windows as host OS.
grandnode/grandnode2
Open-Source eCommerce Platform on .NET Core, MongoDB, AWS DocumentDB, Azure CosmosDB, LiteDB & Vue.js
mrellipse/toucan
Boilerplate template using Vue.js, TypeScript and .NET Core 2.1, based on SOLID design principles
episerver/Foundation
Foundation offers a starting point that is intuitive, well-structured and modular allowing developers to explore CMS, Commerce, Personalization, Search and Navigation, Data Platform and Experimentation.
Version Downloads Last updated
8.14.0 15,490 5/8/2024
8.13.0 3,499 4/27/2024
8.12.0 29,368 3/9/2024
8.11.0 57,880 11/27/2023
8.10.0 1,501 11/23/2023
8.9.0 8,513 11/17/2023
8.8.0 1,494 11/15/2023
8.7.0 4,978 11/1/2023
8.6.0 841 10/22/2023
8.5.0 633 10/6/2023
8.4.0 780 9/28/2023
8.3.0 744 9/21/2023
8.2.0 2,168 7/20/2023
8.1.0 20,209 7/1/2023
8.0.0 2,084 6/28/2023
7.4.0 99,547 6/16/2023
7.3.2 110,548 6/7/2023
7.3.1 1,531 6/7/2023
7.3.0 38,792 5/15/2023
7.2.0 2,868 5/11/2023
7.1.1 38,009 4/13/2023
7.1.0 14,833 4/3/2023
7.0.0 78,805 1/18/2023
6.11.4 41,291 1/17/2023
6.11.3 41,338 1/10/2023
6.11.2 4,778 1/3/2023
6.11.1 2,543 12/31/2022
6.11.0 8,810 12/27/2022
6.10.0 3,731 12/23/2022
6.9.0 33,586 11/30/2022
6.8.0 7,301 11/28/2022
6.7.0 1,395 11/27/2022
6.6.0 2,655 11/26/2022
6.5.0 1,287 11/26/2022
6.4.0 2,242 11/24/2022
6.3.0 1,511 11/24/2022
6.2.0 20,610 11/14/2022
6.1.0 19,027 11/9/2022
6.0.0 2,561 11/9/2022
5.7.3 42,206 10/16/2022
5.7.2 28,398 9/27/2022
5.7.1 43,117 9/19/2022
5.7.0 9,100 9/13/2022
5.6.0 1,951 9/13/2022
5.5.300 3,172 9/9/2022
5.5.200 122,208 8/23/2022
5.5.100 1,453 8/21/2022
5.4.0 944 8/20/2022
5.3.0 57,594 6/23/2022
5.2.1 68,567 5/2/2022
5.2.0 117,301 3/8/2022
5.1.0 45,823 3/6/2022
5.0.0 14,574 2/9/2022
5.0.0-alpha8 731 2/9/2022
5.0.0-alpha7 710 2/8/2022
5.0.0-alpha6 446 2/8/2022
5.0.0-alpha5 784 2/4/2022
5.0.0-alpha4 4,219 12/7/2021
5.0.0-alpha3 546 12/5/2021
5.0.0-alpha2 502 12/4/2021
5.0.0-alpha1 478 12/3/2021
4.0.0 185,972 12/2/2021
4.0.0-beta4 474 12/2/2021
4.0.0-beta3 5,571 7/30/2021
4.0.0-beta2 61,774 5/11/2021
4.0.0-Beta1 782 5/5/2021
3.0.0 396,332 12/20/2020
3.0.0-beta2 743 12/20/2020
3.0.0-beta1 7,205 11/22/2020
3.0.0-alpha14 18,666 10/19/2020
3.0.0-alpha13 2,945 10/12/2020
3.0.0-alpha12 1,160 10/3/2020
3.0.0-alpha11 2,469 9/25/2020
3.0.0-alpha10 36,881 5/18/2020
3.0.0-alpha09 63,765 2/18/2020
3.0.0-alpha08 829 2/14/2020
3.0.0-alpha07 3,634 2/6/2020
3.0.0-alpha06 1,374 2/3/2020
3.0.0-alpha05 2,046 1/27/2020
3.0.0-alpha04 735 1/27/2020
3.0.0-alpha03 742 1/26/2020
3.0.0-alpha02 788 1/18/2020
3.0.0-alpha01 1,652 1/14/2020
2.0.1 228,863 9/25/2020
2.0.0 199,124 12/29/2019