5 references to AsJson
IdentitySample.PasskeyConformance (1)
Program.cs (1)
64
var response = new ServerPublicKeyCredentialOptionsResponse(options.
AsJson
());
IdentitySample.PasskeyUI (1)
Program.cs (1)
67
return Results.Content(options.
AsJson
(), contentType: "application/json");
Microsoft.AspNetCore.Identity (2)
SignInManager.cs (2)
484
OriginalOptionsJson = options.
AsJson
(),
587
props.Items[PasskeyCreationOptionsKey] = options.
AsJson
();
Microsoft.AspNetCore.Identity.Test (1)
SignInManagerTest.cs (1)
1420
var optionsJson = JsonNode.Parse(options.
AsJson
()).AsObject();