How to get user Browser name ( user-agent ) in Asp.net Core?

asp.net-core, asp.net-core-mvc, c#

Solution

I think this was an easy one. Got the answer in `Request.Headers["User-Agent"].ToString()`

Problem

Can you please let me know how to get the browser's name that the client is using in MVC 6, ASP.NET 5?

Original source