C#: Update/Add some hand-written stubs for CWE-079 and CWE-611.

This commit is contained in:
Michael Nebel
2023-12-12 16:00:58 +01:00
parent 597a47b2d5
commit 588fe2792c
2 changed files with 3 additions and 5 deletions

View File

@@ -21,11 +21,6 @@ namespace System
public string HtmlEncode(string s) => throw null;
}
// Generated from `System.Web.IHtmlString` in `System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a`
public interface IHtmlString
{
}
// Generated from `System.Web.IPrincipalContainer` in `System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a`
interface IPrincipalContainer
{

View File

@@ -0,0 +1,3 @@
namespace System.Web;
public interface IHtmlString { }