mirror of
https://github.com/github/codeql.git
synced 2026-02-28 12:53:49 +01:00
9 lines
167 B
C#
9 lines
167 B
C#
class ValueShadowingServerVariable
|
|
{
|
|
public bool isHTTPS(HttpRequest request)
|
|
{
|
|
String https = request["HTTPS"];
|
|
return https == "ON";
|
|
}
|
|
}
|