We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d2d761 commit 8c37304Copy full SHA for 8c37304
src/client/Microsoft.Identity.Client/WsTrust/WsTrustWebRequestManager.cs
@@ -95,6 +95,7 @@ public async Task<WsTrustResponse> GetWsTrustResponseAsync(
95
{ "SOAPAction", (wsTrustEndpoint.Version == WsTrustVersion.WsTrust2005) ? XmlNamespace.Issue2005.ToString() : XmlNamespace.Issue.ToString() }
96
};
97
98
+ // CodeQL [SM00417] False Positive: wsTrustRequest is a body parameter for HttpRequest that follows WsTrust protocol
99
var body = new StringContent(
100
wsTrustRequest,
101
Encoding.UTF8, "application/soap+xml");
0 commit comments