Utils.UriQueryHelper
1.0.0-alpha1
This is a prerelease version of Utils.UriQueryHelper.
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Utils.UriQueryHelper --version 1.0.0-alpha1
NuGet\Install-Package Utils.UriQueryHelper -Version 1.0.0-alpha1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Utils.UriQueryHelper" Version="1.0.0-alpha1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Utils.UriQueryHelper --version 1.0.0-alpha1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Utils.UriQueryHelper, 1.0.0-alpha1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Utils.UriQueryHelper as a Cake Addin #addin nuget:?package=Utils.UriQueryHelper&version=1.0.0-alpha1&prerelease // Install Utils.UriQueryHelper as a Cake Tool #tool nuget:?package=Utils.UriQueryHelper&version=1.0.0-alpha1&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
UriQuery
UriQuery is an unitility class that can be used to modify URI query strings. Can be uses with Uri
or UriBuilder
class objects to modify their Query property.
Usage
private const string BaseUri = "https://host.com:443/path";
[Test]
public void AddParameter()
{
var target = new UriBuilder($"{BaseUri}?param1=value1");
target.Query = UriQuery.Parse(target.Query).With("param2", "value2").GetQuery();
Assert.That(target.ToString(), Is.EqualTo($"{BaseUri}?param1=value1¶m2=value2"));
}
[Test]
public void OverrideExistingParameter()
{
var target = new UriBuilder($"{BaseUri}?param1=value1");
target.Query = UriQuery.Parse(target.Query).With("param1", "value2").GetQuery();
Assert.That(target.ToString(), Is.EqualTo($"{BaseUri}?param1=value2"));
}
[Test]
public void AppendValueToParameter()
{
var target = new UriBuilder($"{BaseUri}?param1=value1");
target.Query = UriQuery.Parse(target.Query).Append("param1", "value2").GetQuery();
Assert.That(target.ToString(), Is.EqualTo($"{BaseUri}?param1[]=value1¶m1[]=value2"));
}
[Test]
public void RemoveParameter()
{
var target = new UriBuilder($"{BaseUri}?param1=value1¶m2=value2");
target.Query = UriQuery.Parse(target.Query).Without("param1").GetQuery();
Assert.That(target.ToString(), Is.EqualTo($"{BaseUri}?param2=value2"));
}
[Test]
public void RemoveValueFromMultiValuedParameter()
{
var target = new UriBuilder($"{BaseUri}?param[]=value1¶m[]=value2¶m[]=value3");
target.Query = UriQuery.Parse(target.Query).Without("param", "value2").GetQuery();
Assert.That(target.ToString(), Is.EqualTo($"{BaseUri}?param[]=value1¶m[]=value3"));
}
See UriQueryTests.cs
file for other usage samples.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net6.0
- No dependencies.
-
net7.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.0 | 159 | 1/14/2024 |
1.0.0-rc2 | 88 | 1/14/2024 |
1.0.0-alpha2 | 95 | 1/14/2024 |
1.0.0-alpha1 | 124 | 11/28/2023 |