Skip to content

Instantly share code, notes, and snippets.

@shinkathe
Last active August 29, 2015 13:57
Show Gist options
  • Save shinkathe/9452756 to your computer and use it in GitHub Desktop.
Save shinkathe/9452756 to your computer and use it in GitHub Desktop.
var contosoUserStore = new ContosoUserStoreService(_connectionString);
var contosoUser = contosoUserStore.GetUser(username, password);
var ci = new ClaimsIdentity(AuthenticationTypes.Federation);
ci.AddClaim(new Claim(ClaimTypes.Name, contosoUser.Name));
ci.AddClaim(new Claim("http://contosouserstore.com/claims/userId", contosoUser.UserId));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment