mirror of
https://github.com/github/codeql.git
synced 2026-06-02 04:10:17 +02: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";
|
|
}
|
|
}
|