Skip to content

Instantly share code, notes, and snippets.

@shinkathe
Created April 10, 2014 22:54
Show Gist options
  • Save shinkathe/10430200 to your computer and use it in GitHub Desktop.
Save shinkathe/10430200 to your computer and use it in GitHub Desktop.
Let's create a user
// Let's create a mock identity - in the real scenario we'd build this identity against some auth store
var ci = new ClaimsIdentity(AuthenticationTypes.Federation);
ci.AddClaim(new Claim(ClaimTypes.Name, "test"));
var claimsPrincipal = new ClaimsPrincipal(ci);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment