C#: Add a stub for the System.Uri class for the CWE-611 test.

This commit is contained in:
Michael Nebel
2025-09-29 09:32:34 +02:00
committed by Ethan Willoner
parent 6f57e5a13e
commit 191dae47fd

View File

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