10 references to Chunked
System (10)
net\System\Net\_ListenerResponseStream.cs (5)
162if (m_HttpContext.Response.BoundaryType == BoundaryType.Chunked) { 260HttpResponseStreamAsyncResult asyncResult = new HttpResponseStreamAsyncResult(this, state, callback, buffer, offset, size, m_HttpContext.Response.BoundaryType==BoundaryType.Chunked, sentHeaders); 263UpdateAfterWrite((uint)((m_HttpContext.Response.BoundaryType == BoundaryType.Chunked) ? 0 : size)); 397if ((m_HttpContext.Response.BoundaryType==BoundaryType.Chunked || m_HttpContext.Response.BoundaryType==BoundaryType.None) && (String.Compare(m_HttpContext.Request.HttpMethod, "HEAD", StringComparison.OrdinalIgnoreCase)!=0)) { 404if (m_HttpContext.Response.BoundaryType==BoundaryType.Chunked) {
net\System\Net\HttpListenerRequest.cs (2)
395m_BoundaryType = BoundaryType.Chunked; 711m_BoundaryType == BoundaryType.Chunked || m_BoundaryType == BoundaryType.Multipart;
net\System\Net\HttpListenerResponse.cs (3)
359if (m_ResponseState<ResponseState.SentHeaders && m_BoundaryType!=BoundaryType.Chunked) { 655m_BoundaryType = BoundaryType.Chunked; 672else if (m_BoundaryType==BoundaryType.Chunked) {