4 overrides of GetServerVariable
System.Web (4)
Hosting\IIS7WorkerRequest.cs (1)
766
public override String
GetServerVariable
(String name) {
Hosting\ISAPIWorkerRequest.cs (2)
1897
public override String
GetServerVariable
(String name) {
3065
public override String
GetServerVariable
(String name) {
Hosting\SimpleWorkerRequest.cs (1)
196
public override String
GetServerVariable
(String name) {
18 references to GetServerVariable
System.Web (18)
Hosting\ISAPIWorkerRequest.cs (9)
725
String s =
GetServerVariable
("ALL_RAW");
1130
return
GetServerVariable
("SERVER_PROTOCOL");
1134
return
GetServerVariable
("REMOTE_ADDR");
1138
return
GetServerVariable
("REMOTE_HOST");
1146
return
GetServerVariable
("LOCAL_ADDR");
1150
return Int32.Parse(
GetServerVariable
("SERVER_PORT"));
1154
return
GetServerVariable
("SERVER_PORT");
1158
return
GetServerVariable
("SERVER_NAME");
1162
String https =
GetServerVariable
("HTTPS");
HttpDebugHandler.cs (2)
182
string authType = context.WorkerRequest.
GetServerVariable
("AUTH_TYPE"); // go the metal
183
string logonUser = context.WorkerRequest.
GetServerVariable
("LOGON_USER");
HttpRequest.cs (2)
551
_serverVariables.AddStatic(name, _wr.
GetServerVariable
(name));
3118
return _wr.
GetServerVariable
(variable);
Security\WindowsAuthenticationModule.cs (2)
138
String strLogonUser = context.WorkerRequest.
GetServerVariable
("LOGON_USER");
139
String strAuthType = context.WorkerRequest.
GetServerVariable
("AUTH_TYPE");
State\sqlstateclientmanager.cs (1)
324
string logon = _rqContext.WorkerRequest.
GetServerVariable
("LOGON_USER");
WorkerRequest.cs (2)
600
String logonUser =
GetServerVariable
("LOGON_USER");
601
String authType =
GetServerVariable
("AUTH_TYPE");