mirror of
https://github.com/github/codeql.git
synced 2026-01-07 03:30:24 +01:00
9 lines
186 B
C#
9 lines
186 B
C#
class ValueShadowingServerVariableFix
|
|
{
|
|
public bool isHTTPS(HttpRequest request)
|
|
{
|
|
String https = request.ServerVariables["HTTPS"];
|
|
return https == "ON";
|
|
}
|
|
}
|