Working through the example from MS site, https://azure.microsoft.com/en-us/documentation/articles/active-directory-b2c-devquickstarts-web-dotnet/
Once a user successfully signs in I cannot seem to get a hold of the claims set on the policy (in the Azure portal).
The claim object here is always null.
var type = ClaimsPrincipal.Current.Identities.First().NameClaimType;
var claim = ClaimsPrincipal.Current.FindFirst(type);
I'm hoping I'm missing something...