C#: Add HtmlString test, which is supported as it is a known sink defined in QL.

This commit is contained in:
Michael Nebel
2024-04-16 15:25:56 +02:00
parent 4886bb1116
commit c720fb2c34

View File

@@ -45,4 +45,9 @@ public class SupportedExternalApis
Console.SetError(Console.Out); // Has no flow summary, supported as neutral summary model
var x = Console.Read(); // Known source
}
public void M6()
{
var html = new HtmlString("html"); // Supported HtmlSink defined in QL.
}
}