
Security News
npm ‘is’ Package Hijacked in Expanding Supply Chain Attack
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.
Utils.UriQueryHelper
Advanced tools
Helper class that can be used to parse an URI query string, add/remove parameters to the query and serialize the result back to the query string.
UriQuery is an unitility class that can be used to parse and modify URI query strings.
[Test]
public void AddParameter()
{
var actual = UriQuery.Parse("?param1=value1").With("param2", "value2").GetQuery();
Assert.That(actual, Is.EqualTo("?param1=value1¶m2=value2"));
}
[Test]
public void OverrideExistingParameter()
{
var actual = UriQuery.Parse("?param1=value1").With("param1", "value2").GetQuery();
Assert.That(actual, Is.EqualTo("?param1=value2"));
}
[Test]
public void AppendValueToParameter()
{
var actual = UriQuery.Parse("?param1=value1").Append("param1", "value2").GetQuery();
Assert.That(actual, Is.EqualTo("?param1[]=value1¶m1[]=value2"));
}
[Test]
public void RemoveParameter()
{
var actual = UriQuery.Parse("?param1=value1¶m2=value2").Without("param1").GetQuery();
Assert.That(actual, Is.EqualTo("?param2=value2"));
}
[Test]
public void RemoveValueFromMultiValuedParameter()
{
var actual = UriQuery.Parse("?param[]=value1¶m[]=value2¶m[]=value3")
.Without("param", "value2")
.GetQuery();
Assert.That(actual, Is.EqualTo("?param[]=value1¶m[]=value3"));
}
See UriQueryTests.cs
file for other usage samples.
QueryBuilder is a helper class that can be used to modify Query property value of a UriBuilder class instance.
private const string BaseUri = "https://host.com:443/path";
[Test]
public void AddParameter()
{
var target = new UriBuilder($"{BaseUri}?param1=value1");
target.ModifyQuery().Set("param2", "value2").Done();
Assert.That(target.Query, Is.EqualTo("?param1=value1¶m2=value2"));
}
[Test]
public void OverrideExistingParameter()
{
var target = new UriBuilder($"{BaseUri}?param1=value1");
target.ModifyQuery().Set("param1", "value2").Done();
Assert.That(target.Query, Is.EqualTo("?param1=value2"));
}
[Test]
public void AppendValueToParameter()
{
var target = new UriBuilder($"{BaseUri}?param1=value1");
target.ModifyQuery().Add("param1", "value2").Done();
Assert.That(target.Query, Is.EqualTo("?param1[]=value1¶m1[]=value2"));
}
[Test]
public void RemoveParameter()
{
var target = new UriBuilder($"{BaseUri}?param1=value1¶m2=value2");
target.ModifyQuery().Remove("param1").Done();
Assert.That(target.Query, Is.EqualTo("?param2=value2"));
}
[Test]
public void RemoveValueFromMultiValuedParameter()
{
var target = new UriBuilder($"{BaseUri}?param[]=value1¶m[]=value2¶m[]=value3");
target.ModifyQuery().Remove("param", "value2").Done();
Assert.That(target.Query, Is.EqualTo("?param[]=value1¶m[]=value3"));
}
See QueryBuilderTests.cs
file for other usage samples.
FAQs
Helper class that can be used to parse an URI query string, add/remove parameters to the query and serialize the result back to the query string.
We found that utils.uriqueryhelper demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.
Security News
A critical flaw in the popular npm form-data package could allow HTTP parameter pollution, affecting millions of projects until patched versions are adopted.
Security News
Bun 1.2.19 introduces isolated installs for smoother monorepo workflows, along with performance boosts, new tooling, and key compatibility fixes.