17 references to IsAuthenticated
System.Web (15)
Abstractions\HttpRequestWrapper.cs (1)
179
return _httpRequest.
IsAuthenticated
;
HttpContext.cs (2)
1278
_Profile = ProfileBase.Create(Request.
IsAuthenticated
? User.Identity.Name : Request.AnonymousID, Request.
IsAuthenticated
);
Profile\ProfileModule.cs (1)
126
if (context.Request.
IsAuthenticated
&& !string.IsNullOrEmpty(context.Request.AnonymousID) && _MigrateEventHandler != null)
Profile\SqlProfileProvider.cs (1)
154
sName = (context.Request.
IsAuthenticated
? context.User.Identity.Name : context.Request.AnonymousID);
Security\AnonymousIdentificationModule.cs (2)
71
if (!s_Enabled || !context.Request.
IsAuthenticated
) {
151
isAuthenticated = context.Request.
IsAuthenticated
;
UI\WebControls\login.cs (1)
1330
TemplateContainer.Visible = (VisibleWhenLoggedIn || !Page.Request.
IsAuthenticated
|| OnLoginPage());
UI\WebControls\loginstatus.cs (1)
364
LoggedIn = Page.Request.
IsAuthenticated
;
UI\WebControls\LoginView.cs (1)
360
if (!DesignMode && Page != null && Page.Request.
IsAuthenticated
) {
UI\WebParts\PersonalizationProvider.cs (3)
77
if (request.
IsAuthenticated
) {
143
if (request.
IsAuthenticated
) {
202
if ((webPartManager.Personalization.Scope == PersonalizationScope.User) && page.Request.
IsAuthenticated
) {
UI\WebParts\WebPartPersonalization.cs (2)
121
if (Scope == PersonalizationScope.User && request.
IsAuthenticated
) {
522
if (request.
IsAuthenticated
) {
System.Web.Extensions (2)
Security\AuthenticationService.cs (1)
37
return HttpContext.Current.Request.
IsAuthenticated
;
UI\AuthenticationServiceManager.cs (1)
86
(context != null && context.Request.
IsAuthenticated
)) {