Skip to content

Shuttle/Shuttle.Core.Uris

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Shuttle.Core.Uris

PM> Install-Package Shuttle.Core.Uris

Provides simple System.Uri infrastructure components.

QueryString

The QueryString inherits from Dictionary<string, string> so all the dictionary functionality is available.

public QueryString()
public QueryString(Uri uri) : this(uri, true)
public QueryString(Uri uri, bool escape)

Instantiates the QueryString class from the given System.Uri. If escape is true the query string keys and values will be unescaped using Uri.UnescapeDataString.

public new void Add(string key, string value)
public void AddUnescaped(string key, string value)

Adds the key/value pair to the dictionary.

About

Uri infrastructure utilities.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 2

  •  
  •  

Languages