Skip to content

Commit eedddb5

Browse files
Remove the ; at the end of httpclient variable
1 parent f962911 commit eedddb5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dotnet/src/dotnetframework/GxClasses/Domain/GxHttpClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ internal MultiPartTemplate()
5050
{
5151
Boundary = "----------------------------" + DateTime.Now.Ticks.ToString("x");
5252
ContentType = $"multipart/form-data; boundary={Boundary}";
53-
FormdataTemplate = "\r\n--" + Boundary + "\r\nContent-Disposition: form-data; name=\"{0}\";\r\n\r\n{1}";
53+
FormdataTemplate = "\r\n--" + Boundary + "\r\nContent-Disposition: form-data; name=\"{0}\"\r\n\r\n{1}";
5454
Boundarybytes = Encoding.ASCII.GetBytes($"\r\n--{Boundary}\r\n");
5555
EndBoundaryBytes = Encoding.ASCII.GetBytes($"\r\n--{Boundary}--");
5656
HeaderTemplate = "Content-Disposition: form-data; name=\"{0}\"; filename=\"{1}\"\r\n" + "Content-Type: {2}\r\n\r\n";

0 commit comments

Comments
 (0)