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 78249de commit eec8942Copy full SHA for eec8942
src/client/Microsoft.Identity.Client/WsTrust/WsTrustWebRequestManager.cs
@@ -100,8 +100,8 @@ public async Task<WsTrustResponse> GetWsTrustResponseAsync(
100
{ "SOAPAction", (wsTrustEndpoint.Version == WsTrustVersion.WsTrust2005) ? XmlNamespace.Issue2005.ToString() : XmlNamespace.Issue.ToString() }
101
};
102
103
- // CodeQL [SM00417] False Positive: wsTrustRequest is a body parameter for HttpRequest that follows WsTrust protocol
104
var body = new StringContent(
+ // CodeQL [SM00417] False Positive: wsTrustRequest is a body parameter for HttpRequest that follows WsTrust protocol
105
wsTrustRequest,
106
Encoding.UTF8, "application/soap+xml");
107
0 commit comments