mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
19 lines
356 B
C#
19 lines
356 B
C#
// semmle-extractor-options: ${testdir}/../../../resources/stubs/System.Web.cs /r:System.Collections.Specialized.dll
|
|
|
|
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";
|
|
}
|
|
}
|
|
}
|