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