Tommy Parnell b1851dc5c3 the thigns
2016-11-08 17:16:42 -05:00
2016-11-08 17:04:47 -05:00
2016-11-08 10:46:37 -05:00
2016-11-08 17:16:42 -05:00
2016-11-08 17:04:47 -05:00
2016-11-08 10:46:39 -05:00
2016-11-08 13:39:12 -05:00

FluentUriBuilder

This lets you do things like


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


new UriBuilder("https://awesome.com/yo)
    .WithParameter("id", "5")
    .ToString();



result: https://awesome.com/yo?id=5

Description
A set of fluent extensions ontop of System.UriBuilder
Readme MIT 190 KiB
Languages
C# 96.5%
Makefile 3.5%