File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ public virtual IRequest WithArguments(object arguments)
119
119
120
120
var query = this . Message . RequestUri . ParseQueryString ( ) ;
121
121
foreach ( var pair in dictionary )
122
- query . Add ( pair . Key , pair . Value . ToString ( ) ) ;
122
+ query . Add ( pair . Key , ( pair . Value ?? "" ) . ToString ( ) ) ;
123
123
string uri = this . Message . RequestUri . GetLeftPart ( UriPartial . Path ) + "?" + query ;
124
124
this . Message . RequestUri = new Uri ( uri ) ;
125
125
Original file line number Diff line number Diff line change 32
32
// You can specify all the values or you can default the Build and Revision Numbers
33
33
// by using the '*' as shown below:
34
34
// [assembly: AssemblyVersion("1.0.*")]
35
- [ assembly: AssemblyVersion ( "0.4.0.4 " ) ]
36
- [ assembly: AssemblyFileVersion ( "0.4.0.4 " ) ]
35
+ [ assembly: AssemblyVersion ( "0.4.0.5 " ) ]
36
+ [ assembly: AssemblyFileVersion ( "0.4.0.5 " ) ]
Original file line number Diff line number Diff line change 2
2
<package >
3
3
<metadata >
4
4
<id >Pathoschild.Http.FluentClient</id >
5
- <version >0.4.0-alpha4 </version >
5
+ <version >0.4.0-alpha5 </version >
6
6
<authors >Jesse Plamondon-Willard</authors >
7
7
<description >A fluent, strongly-typed HTTP client built on top of Microsoft's .NET 4.5 HttpClient.</description >
8
8
<tags >api wcf web webapi</tags >
You can’t perform that action at this time.
0 commit comments