Skip to content

Commit 5569b00

Browse files
author
Per Kops
committedJan 29, 2021
Ensuring we dont set content, when there is no content - otherwise e.g. GET/HEAD would fail. Setting application/json in ctor now.
1 parent 6d51ee2 commit 5569b00

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed
 

‎src/Atc.Rest.Client/Builder/MessageRequestBuilder.cs

+9-4
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ internal class MessageRequestBuilder : IMessageRequestBuilder
1515
private readonly Dictionary<string, string> pathMapper;
1616
private readonly Dictionary<string, string> headerMapper;
1717
private readonly Dictionary<string, string> queryMapper;
18-
private string content = string.Empty;
18+
private string? content;
1919

2020
public MessageRequestBuilder(string pathTemplate, IContractSerializer serializer)
2121
{
@@ -24,6 +24,7 @@ public MessageRequestBuilder(string pathTemplate, IContractSerializer serializer
2424
pathMapper = new Dictionary<string, string>(StringComparer.Ordinal);
2525
headerMapper = new Dictionary<string, string>(StringComparer.Ordinal);
2626
queryMapper = new Dictionary<string, string>(StringComparer.Ordinal);
27+
WithHeaderParameter("accept", "application/json");
2728
}
2829

2930
public HttpRequestMessage Build(HttpMethod method)
@@ -37,10 +38,14 @@ public HttpRequestMessage Build(HttpMethod method)
3738
}
3839

3940
message.RequestUri = BuildRequestUri();
40-
message.Content = new StringContent(content);
41-
message.Content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/json");
4241
message.Method = method;
4342

43+
if (content is not null)
44+
{
45+
message.Content = new StringContent(content);
46+
message.Content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/json");
47+
}
48+
4449
return message;
4550
}
4651

@@ -126,4 +131,4 @@ private Uri BuildRequestUri()
126131
return new Uri(urlBuilder.ToString(), UriKind.RelativeOrAbsolute);
127132
}
128133
}
129-
}
134+
}

0 commit comments

Comments
 (0)