MobileDetect

Mobile device detection


Keywords
detect, mobile
License
MIT
Install
Install-Package MobileDetect -Version 0.0.4.1

Documentation

mobile-detect

About

A simple C# library to detect if the request is from a mobile device

This is based on the PHP version Mobile-Detect (the current version has limited functionality compared to the original).

Status

Coverage Status Tests Nuget

Usage

/* Removed usings */
using MobileDetect.Implementations;
using MobileDetect.MatchingRules;

namespace WebApplication.Controllers
{
    public class HomeController : Controller
    {
        public IActionResult Index()
        {
            var detector = new MobileDetector(DefaultRules.Instance, Request.Headers);
            var isMobile = detector.IsMobile(); //this is true is the request originates from a mobile phone or tablet
            var isTablet = detector.IsTablet(); //this is true is the request originates from a tablet

            /* Do some stuff */

            return View();
        }
    }
}