示例#1
0
		public J2EEPrincipal(HttpServletRequest req)
		{
			_request = req;
			string authType = req.getAuthType();
			if (authType == null)
				authType = "";
			_identity = new GenericIdentity(req.getRemoteUser(), authType);
		}
示例#2
0
        public J2EEPrincipal(HttpServletRequest req)
        {
            _request = req;
            string authType = req.getAuthType();

            if (authType == null)
            {
                authType = "";
            }
            _identity = new GenericIdentity(req.getRemoteUser(), authType);
        }
示例#3
0
 public override string GetAuthType()
 {
     return(_HttpServletRequest.getAuthType());
 }