コード例 #1
0
ファイル: Extensions.cs プロジェクト: yanh19930226/yunExpress
        public static int GetLoginErrorCount(this IAuthenticationService workContext)
        {
            int intLoginErrorCount;

            int.TryParse(WebTools.GetCookie(Cookies.LoginErrorCount), out intLoginErrorCount);
            return(intLoginErrorCount);
        }