2 instantiations of ClientFormsIdentity
System.Web.Extensions (2)
ClientServices\Providers\ClientFormsAuthenticationMembershipProvider.cs (2)
66Thread.CurrentPrincipal = new ClientRolePrincipal(new ClientFormsIdentity(username, password, 359Thread.CurrentPrincipal = new ClientRolePrincipal(new ClientFormsIdentity(username, password, this, "ClientForms", true, cookies));
22 references to ClientFormsIdentity
System.Web.Extensions (22)
ClientServices\Providers\ClientFormsAuthenticationMembershipProvider.cs (6)
199if (p == null || !(p.Identity is ClientFormsIdentity)) 203CookieContainer cookies = ((ClientFormsIdentity)p.Identity).AuthenticationCookies; 290if (Thread.CurrentPrincipal != null && Thread.CurrentPrincipal.Identity is ClientFormsIdentity) 300if ((Thread.CurrentPrincipal is ClientRolePrincipal) && (Thread.CurrentPrincipal.Identity is ClientFormsIdentity) && Thread.CurrentPrincipal.Identity.Name == username) 302cookies = ((ClientFormsIdentity)Thread.CurrentPrincipal.Identity).AuthenticationCookies; 355if ( !(Thread.CurrentPrincipal is ClientRolePrincipal) || !(Thread.CurrentPrincipal.Identity is ClientFormsIdentity) || Thread.CurrentPrincipal.Identity.Name != username)
ClientServices\Providers\ClientRoleProvider.cs (4)
135if (!_HonorCookieExpiry && _Roles.Length < 1 && (p.Identity is ClientFormsIdentity)) 137((ClientFormsIdentity)p.Identity).RevalidateUser(); 167if (identity is ClientFormsIdentity) 168cookies = ((ClientFormsIdentity)identity).AuthenticationCookies;
ClientServices\Providers\ClientSettingsProvider.cs (12)
81if (id is ClientFormsIdentity) 82cookies = ((ClientFormsIdentity)id).AuthenticationCookies; 454ClientFormsIdentity id = Thread.CurrentPrincipal.Identity as ClientFormsIdentity; 477if (id is ClientFormsIdentity) 478cookies = ((ClientFormsIdentity)id).AuthenticationCookies; 524object [] paramValues = new object [] {propertyNames, id.IsAuthenticated && (id is ClientFormsIdentity) }; 590ClientFormsIdentity id = Thread.CurrentPrincipal.Identity as ClientFormsIdentity; 629if (id is ClientFormsIdentity) 630cookies = ((ClientFormsIdentity)id).AuthenticationCookies; 647object [] paramValues = new object [] {propertyValues, id.IsAuthenticated && (id is ClientFormsIdentity) };