Files
codeql/csharp/ql/test/library-tests/asp/basic/Test.cs
2023-12-13 10:07:57 +01:00

21 lines
523 B
C#

// semmle-extractor-options: /nostdlib /noconfig
// semmle-extractor-options: --load-sources-from-project:${testdir}/../../../resources/stubs/_frameworks/Microsoft.NETCore.App/Microsoft.NETCore.App.csproj
// semmle-extractor-options: ${testdir}/../../../resources/stubs/System.Web.cs
using System;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace Test
{
class CodeBehindPage : Page
{
public string chooseImage()
{
return "some url";
}
}
}