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