본문 바로가기
개발/C#

C# 클라이언트 Browser 정보얻기

by 혈중마라농도 2022. 1. 7.
public static string GetClientBrowser()
{
    try
    {
        HttpContext chc = System.Web.HttpContext.Current;
        if (chc == null)
            return string.Empty;

        return chc.Request.Browser.Capabilities[""] != null ? chc.Request.Browser.Capabilities[""].ToString() : chc.Request.Browser.Browser + chc.Request.Browser.Version;
    }
    catch { }
    return String.Empty;
}
반응형

'개발 > C#' 카테고리의 다른 글

C# string to int 확장형  (0) 2022.01.11
C# byte to int  (0) 2022.01.11
C# 로컬IP(서버IP)정보 조회  (0) 2022.01.06
C# 파일사이즈 Long -> String 변환  (0) 2022.01.06
ASP.net 클라이언트IP 얻기  (0) 2022.01.06

댓글