I'm trying to downgrade a asp.net (VB) project from 4.5 to 4.0. The only error left is an undefined call to "System.Security.Claims.ClaimsPrincipal". Is there any equivalent in the 4.0 framework ?
Code :
Dim p As New System.Security.Claims.ClaimsPrincipal(New AppIdentity(user, True))
HttpContext.Current.User = p
Thread.CurrentPrincipal = p