4 implementations of IsAuthenticated
mscorlib (1)
system\security\claims\ClaimsIdentity.cs (1)
459public virtual bool IsAuthenticated
System.ServiceModel (1)
System\ServiceModel\Security\Tokens\WindowsSidIdentity.cs (1)
51public bool IsAuthenticated
System.Web (1)
Security\PassportIdentity.cs (1)
203public bool IsAuthenticated { get { return _Authenticated;}}
System.Web.Extensions (1)
ClientServices\ClientFormsIdentity.cs (1)
19public bool IsAuthenticated { get { return _IsAuthenticated; }}
39 references to IsAuthenticated
mscorlib (1)
system\security\permissions\principalpermission.cs (1)
487if ((identity.IsAuthenticated &&
System (1)
net\System\Net\HttpListenerRequest.cs (1)
457return user != null && user.Identity != null && user.Identity.IsAuthenticated;
System.Management (1)
Instrumentation\WMICapabilities.cs (1)
144return (principal.Identity.IsAuthenticated && principal.IsInRole(WindowsBuiltInRole.Administrator));
System.ServiceModel (1)
System\ServiceModel\Channels\ServiceWebSocketContext.cs (1)
41get { return this.user != null ? this.user.Identity != null && this.user.Identity.IsAuthenticated : this.context.IsAuthenticated; }
System.ServiceModel.Web (2)
System\ServiceModel\Dispatcher\JavascriptCallbackMessageInspector.cs (1)
37HttpContext.Current.User.Identity.IsAuthenticated)
System\ServiceModel\Web\CachingParameterInspector.cs (1)
111if (HttpContext.Current.User.Identity.IsAuthenticated)
System.Web (24)
Configuration\AuthorizationRule.cs (1)
461if (_AnonUserSpecified && !user.Identity.IsAuthenticated) {
Configuration\AuthorizationRuleCollection.cs (1)
108if (!user.Identity.IsAuthenticated && _iAnonymousAllowed != 0)
HttpContext.cs (1)
1897if (!User.Identity.IsAuthenticated)
HttpRequest.cs (3)
509if (_context.User != null && _context.User.Identity.IsAuthenticated) 515if (_context.User != null && _context.User.Identity.IsAuthenticated) 1375return(_context.User != null && _context.User.Identity != null && _context.User.Identity.IsAuthenticated);
Management\EventlogProvider.cs (1)
92authed = id.IsAuthenticated;
Management\WebEvents.cs (5)
1284fields.Add(new WebEventFieldData("UserAuthenticated", RequestInformation.Principal.Identity.IsAuthenticated.ToString(), WebEventFieldType.Bool)); 1459fields.Add(new WebEventFieldData("UserAuthenticated", RequestInformation.Principal.Identity.IsAuthenticated.ToString(), WebEventFieldType.Bool)); 1558fields.Add(new WebEventFieldData("UserAuthenticated", RequestInformation.Principal.Identity.IsAuthenticated.ToString(), WebEventFieldType.Bool)); 1618fields.Add(new WebEventFieldData("UserAuthenticated", RequestInformation.Principal.Identity.IsAuthenticated.ToString(), WebEventFieldType.Bool)); 2007authed = id.IsAuthenticated;
Management\wmiprovider.cs (1)
108authed = id.IsAuthenticated;
Security\FileAuthorizationModule.cs (1)
159bool isAnonymousUser = (context.User == null || !context.User.Identity.IsAuthenticated);
Security\RoleManagerModule.cs (2)
102if (context.User.Identity.IsAuthenticated && (!Roles.CookieRequireSSL || context.Request.IsSecureConnection)) 165if (context.User == null || !(context.User is RolePrincipal) || !context.User.Identity.IsAuthenticated)
Security\RolePrincipal.cs (5)
48if (identity.IsAuthenticated) 93if (identity.IsAuthenticated) 238if (_Identity != null && !_Identity.IsAuthenticated) 297if (!_Identity.IsAuthenticated) 329if (!_Identity.IsAuthenticated || role == null)
Security\UrlAuthorizationModule.cs (3)
114if (context.User != null && context.User.Identity.IsAuthenticated) { 134if (context.User == null || !context.User.Identity.IsAuthenticated) 150if (context.User == null || !context.User.Identity.IsAuthenticated)
System.Web.DataVisualization (2)
WebForm\General\ChartHttpHandler.cs (2)
1317if (HttpContext.Current.User.Identity.IsAuthenticated) 1332if (!HttpContext.Current.User.Identity.IsAuthenticated)
System.Web.Extensions (7)
ApplicationServices\ApplicationServiceHelper.cs (1)
84authenticated = userIdentity.IsAuthenticated;
ApplicationServices\AuthenticationService.cs (1)
126return HttpContext.Current.User.Identity.IsAuthenticated;
ApplicationServices\ProfileService.cs (1)
299isAuthenticated = user.Identity.IsAuthenticated;
ClientServices\Providers\ClientRoleProvider.cs (1)
115if (p == null || p.Identity == null || !p.Identity.IsAuthenticated)
ClientServices\Providers\ClientSettingsProvider.cs (3)
117AddToColl(p, retColl, id.IsAuthenticated); 524object [] paramValues = new object [] {propertyNames, id.IsAuthenticated && (id is ClientFormsIdentity) }; 647object [] paramValues = new object [] {propertyValues, id.IsAuthenticated && (id is ClientFormsIdentity) };