14 references to GetString
Microsoft.AspNetCore.Authentication.MicrosoftAccount (2)
MicrosoftAccountOptions.cs (2)
31ClaimActions.MapCustomJson(ClaimTypes.Email, user => user.GetString("mail") ?? user.GetString("userPrincipalName"));
Microsoft.AspNetCore.Authentication.OAuth (5)
OAuthTokenResponse.cs (5)
22AccessToken = root.GetString("access_token"); 23TokenType = root.GetString("token_type"); 24RefreshToken = root.GetString("refresh_token"); 25ExpiresIn = root.GetString("expires_in"); 96var error = root.GetString("error");
Microsoft.AspNetCore.Authentication.OpenIdConnect (1)
UniqueJsonKeyClaimAction.cs (1)
32var value = userData.GetString(JsonKey);
Microsoft.AspNetCore.Authentication.Test (1)
JsonDocumentAuthExtensionsTests.cs (1)
20var value = document.RootElement.GetString("foo");
OpenIdConnectSample (2)
Startup.cs (2)
267props.UpdateTokenValue("access_token", payload.RootElement.GetString("access_token")); 268props.UpdateTokenValue("refresh_token", payload.RootElement.GetString("refresh_token"));
SocialSample (3)
Startup.cs (3)
337authProperties.UpdateTokenValue("access_token", payload.RootElement.GetString("access_token")); 338refreshToken = payload.RootElement.GetString("refresh_token"); 372authProperties.UpdateTokenValue("access_token", payload.RootElement.GetString("access_token"));