3 writes to ContentEncoding
System.Web (2)
Abstractions\HttpRequestWrapper.cs (1)
106_httpRequest.ContentEncoding = value;
UI\Page.cs (1)
5602_request.ContentEncoding = Encoding.GetEncoding(preferredRequestEncoding);
System.Web.Mobile (1)
UI\MobileControls\Adapters\HtmlPageAdapter.cs (1)
409context.Request.ContentEncoding = Encoding.GetEncoding(preferredRequestEncoding);
14 references to ContentEncoding
System.Web (14)
Abstractions\HttpRequestWrapper.cs (1)
103return _httpRequest.ContentEncoding;
Configuration\AuthenticationConfig.cs (1)
91decodedLoginUrl = HttpUtility.UrlDecode(loginUrl, context.Request.ContentEncoding);
HttpRequest.cs (4)
394_form.FillFromEncodedBytes(formBytes, ContentEncoding); 411_form.Add(elements[i].Name, elements[i].GetAsString(ContentEncoding)); 1099_multipartContentElements = HttpMultipartContentTemplateParser.Parse(content, content.Length, boundary, ContentEncoding); 1348Encoding e = ContentEncoding;
HttpResponse.cs (1)
3344Encoding qsEncoding = (Request != null) ? Request.ContentEncoding : ContentEncoding;
httpserverutility.cs (1)
1019Encoding e = (_context != null) ? _context.Request.ContentEncoding : Encoding.UTF8;
Security\FormsAuthentication.cs (1)
752returnUrl = HttpUtility.UrlEncode(context.Request.RawUrl, context.Request.ContentEncoding);
Security\FormsAuthenticationModule.cs (2)
303strRedirect = loginUrl + "&" + FormsAuthentication.ReturnUrlVar + "=" + HttpUtility.UrlEncode(strUrl, context.Request.ContentEncoding); 306strRedirect = loginUrl + "?" + FormsAuthentication.ReturnUrlVar + "=" + HttpUtility.UrlEncode(strUrl, context.Request.ContentEncoding);
Security\PassportAuthenticationModule.cs (2)
188String strLogoTag = id.LogoTag2(HttpUtility.UrlEncode(strUrl, context.Request.ContentEncoding)); 221strRedirect = redirectUrl + strSep + "ReturnUrl=" + HttpUtility.UrlEncode(strUrl, context.Request.ContentEncoding);
UI\TraceContext.cs (1)
777row[SR.Trace_Request_Encoding] = _context.Request.ContentEncoding.EncodingName;