We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb0fbc4 commit 0c31f95Copy full SHA for 0c31f95
3 files changed
samples/features/sql-clr/Curl/Curl.cs
@@ -75,7 +75,8 @@ private static void AddHeader(SqlChars H, WebClient client)
75
{
76
var header = H.ToSqlString().Value;
77
if (!string.IsNullOrWhiteSpace(header))
78
- client.Headers.Add(header);
+ foreach(string h in header.Split(';'))
79
+ client.Headers.Add(h);
80
}
81
82
};
0 commit comments