This commit is contained in:
Tommy Parnell
2016-11-08 13:38:36 -05:00
parent 480403e3af
commit 0a2e89f97b
2 changed files with 86 additions and 5 deletions

30
Readme.md Normal file
View File

@@ -0,0 +1,30 @@
## FluentUriBuilder
This lets you do things like
```csharp
new UriBuilder()
.WithParameter("awesome", "yodawg")
.WithParameter("fun", ["cool", "yay"])
.WithHost("awesome.com")
.WithPathSegment("seg")
.UseHttps()
.ToString()
result: https://awesome.com/seg?awesome=yodawg&fun=cool,yay
```
or
```csharp
new UriBuilder("https://awesome.com/yo)
.WithParameter("id", "5")
.ToString();
result: https://awesome.com/yo?id=5
```