public J2EEPrincipal(HttpServletRequest req) { _request = req; string authType = req.getAuthType(); if (authType == null) authType = ""; _identity = new GenericIdentity(req.getRemoteUser(), authType); }
public J2EEPrincipal(HttpServletRequest req) { _request = req; string authType = req.getAuthType(); if (authType == null) { authType = ""; } _identity = new GenericIdentity(req.getRemoteUser(), authType); }
public override string GetAuthType() { return(_HttpServletRequest.getAuthType()); }