Skip to content
This repository has been archived by the owner on Jun 17, 2022. It is now read-only.

validide/mobile-detect

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
src
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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

Codacy Badge 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();
        }
    }
}