8 references to GetString
Microsoft.AspNetCore.Authentication.Abstractions (2)
AuthenticationProperties.cs (2)
75get => GetString(IsPersistentKey) != null; 85get => GetString(RedirectUriKey);
Microsoft.AspNetCore.Authentication.Core.Test (6)
AuthenticationPropertiesTests.cs (6)
79Assert.Null(props.GetString("foo")); 83Assert.Equal("foo bar", props.GetString("foo")); 88Assert.Equal("foo baz", props.GetString("foo")); 93Assert.Equal("xy", props.GetString("bar")); 98Assert.Equal(string.Empty, props.GetString("bar")); 102Assert.Null(props.GetString("foo"));