9 writes to ContentEncoding
System.Web (5)
Abstractions\HttpResponseWrapper.cs (1)
83_httpResponse.ContentEncoding = value;
State\SessionStateContainer.cs (1)
195HttpContext.Current.Response.ContentEncoding = Encoding.GetEncoding(value);
UI\Page.cs (3)
3829set { Response.ContentEncoding = Encoding.GetEncoding(value); } 3838set { Response.ContentEncoding = Encoding.GetEncoding(value); } 5598_response.ContentEncoding = Encoding.GetEncoding(preferredResponseEncoding);
System.Web.Extensions (1)
HttpResponseInternalWrapper.cs (1)
106_httpResponse.ContentEncoding = value;
System.Web.Mobile (3)
UI\MobileControls\Adapters\HtmlPageAdapter.cs (1)
405context.Response.ContentEncoding = Encoding.GetEncoding(preferredResponseEncoding);
UI\MobileControls\Adapters\WmlPageAdapter.cs (2)
221Page.Response.ContentEncoding = UTF8Encoding; 340Page.Response.ContentEncoding = UTF8Encoding;
12 references to ContentEncoding
System.Web (10)
Abstractions\HttpResponseWrapper.cs (1)
80return _httpResponse.ContentEncoding;
HttpResponse.cs (3)
1682_charSet = ContentEncoding.WebName; 1769Encoding e = ContentEncoding; 3344Encoding qsEncoding = (Request != null) ? Request.ContentEncoding : ContentEncoding;
httpserverutility.cs (1)
985Encoding e = (_context != null) ? _context.Response.ContentEncoding : Encoding.UTF8;
HttpWriter.cs (1)
870_responseEncoding = _response.ContentEncoding;
State\SessionStateContainer.cs (1)
189return HttpContext.Current.Response.ContentEncoding.CodePage;
UI\Page.cs (2)
3830get { return Response.ContentEncoding.CodePage; } 3839get { return Response.ContentEncoding.EncodingName; }
UI\TraceContext.cs (1)
502row[SR.Trace_Response_Encoding] = _context.Response.ContentEncoding.EncodingName;
System.Web.Extensions (1)
HttpResponseInternalWrapper.cs (1)
103return _httpResponse.ContentEncoding;
System.Web.Mobile (1)
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlMobileTextWriter.cs (1)
811WriteAttribute ("encoding", HttpContext.Current.Response.ContentEncoding.WebName);