7 references to AddQueryString
Microsoft.AspNetCore.Authentication (1)
RemoteAuthenticationHandler.cs (1)
320uri = QueryHelpers.AddQueryString(uri, context.ReturnUrlParameter, context.ReturnUrl);
Microsoft.AspNetCore.Authentication.Facebook (3)
FacebookHandler.cs (3)
42var endpoint = QueryHelpers.AddQueryString(Options.UserInformationEndpoint, "access_token", tokens.AccessToken!); 45endpoint = QueryHelpers.AddQueryString(endpoint, "appsecret_proof", GenerateAppSecretProof(tokens.AccessToken!)); 49endpoint = QueryHelpers.AddQueryString(endpoint, "fields", string.Join(",", Options.Fields));
Microsoft.AspNetCore.Mvc.Razor (1)
Infrastructure\DefaultFileVersionProvider.cs (1)
74value = QueryHelpers.AddQueryString(path, VersionKey, GetHashForFile(fileInfo));
Microsoft.AspNetCore.WebUtilities.Tests (2)
QueryHelpersTests.cs (2)
107Assert.Throws<ArgumentNullException>("value", () => QueryHelpers.AddQueryString("http://contoso.com/", "hello", null!)); 133var result = QueryHelpers.AddQueryString(uri, "hello", "world");