34 references to ServerVariables
System.Runtime.Remoting (2)
channels\core\corechannel.cs (1)
1133String mdPath = request.ServerVariables["APPL_MD_PATH"];
channels\http\httpremotinghandler.cs (1)
308string localAddress = context.Request.ServerVariables["LOCAL_ADDR"];
System.ServiceModel.Activation (2)
System\ServiceModel\Activation\HostedAspNetEnvironment.cs (1)
134webSocketVersion = application.Request.ServerVariables[WebSocketVersionServerProperty];
System\ServiceModel\Activation\HostedHttpContext.cs (1)
829string remotePort = this.result.Application.Request.ServerVariables["REMOTE_PORT"];
System.Web (28)
Abstractions\HttpRequestWrapper.cs (1)
251return _httpRequest.ServerVariables;
Configuration\CapabilitiesState.cs (1)
94string result = _request.ServerVariables[varname];
Configuration\HttpCapabilitiesEvaluator.cs (1)
333value = request.ServerVariables[key];
HttpClientCertificate.cs (9)
130String flags = context.Request.ServerVariables["CERT_FLAGS"]; 140_Cookie = context.Request.ServerVariables["CERT_COOKIE"]; 141_Issuer = context.Request.ServerVariables["CERT_ISSUER"]; 142_ServerIssuer = context.Request.ServerVariables["CERT_SERVER_ISSUER"]; 143_Subject = context.Request.ServerVariables["CERT_SUBJECT"]; 144_ServerSubject = context.Request.ServerVariables["CERT_SERVER_SUBJECT"]; 145_SerialNumber = context.Request.ServerVariables["CERT_SERIALNUMBER"]; 154String keySize = context.Request.ServerVariables["CERT_KEYSIZE"]; 155String skeySize = context.Request.ServerVariables["CERT_SECRETKEYSIZE"];
HttpHeaderCollection.cs (2)
147HttpServerVarsCollection serverVars = _request.ServerVariables as HttpServerVarsCollection; 195HttpServerVarsCollection serverVars = _request.ServerVariables as HttpServerVarsCollection;
HttpRequest.cs (4)
798_params.Add(this.ServerVariables); 2058s = ServerVariables[key]; 3128HttpServerVarsCollection serverVars = ServerVariables as HttpServerVarsCollection; 3145HttpServerVarsCollection serverVars = ServerVariables as HttpServerVarsCollection;
Security\PassportIdentity.cs (2)
91context.Request.ServerVariables["SERVER_PROTOCOL"] + "\r\n"; 94context.Request.ServerVariables["ALL_RAW"],
UI\TraceContext.cs (1)
827AddCollectionToRequestData(requestData, SR.Trace_Server_Variables, _context.Request.ServerVariables);
UI\ViewStateException.cs (5)
68_remoteAddr = request.ServerVariables["REMOTE_ADDR"]; 69_remotePort = request.ServerVariables["REMOTE_PORT"]; 70_userAgent = request.ServerVariables["HTTP_USER_AGENT"]; 71_referer = request.ServerVariables["HTTP_REFERER"]; 72_path = request.ServerVariables["PATH_INFO"];
UnvalidatedRequestValues.cs (1)
131string svValue = _request.ServerVariables[field];
Util\AspCompat.cs (1)
647return CollectionToString(_context.Request.ServerVariables);
System.Web.Mobile (2)
UI\MobileControls\Adapters\HtmlPageAdapter.cs (1)
122String protocol = Page.Request.ServerVariables["SERVER_PROTOCOL"];
UI\MobileControls\MobilePage.cs (1)
632fullQueryString = Request.ServerVariables["QUERY_STRING"];