27 references to BoundaryType
System (27)
net\System\Net\_ListenerResponseStream.cs (7)
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)) { 398if (m_HttpContext.Response.BoundaryType==BoundaryType.None) { 404if (m_HttpContext.Response.BoundaryType==BoundaryType.Chunked) {
net\System\Net\HttpListenerRequest.cs (9)
229private BoundaryType m_BoundaryType; 256m_BoundaryType = BoundaryType.None; 392if (m_BoundaryType==BoundaryType.None) { 395m_BoundaryType = BoundaryType.Chunked; 400m_BoundaryType = BoundaryType.ContentLength; 406m_BoundaryType = BoundaryType.Invalid; 710return (ContentLength64 > 0 && m_BoundaryType == BoundaryType.ContentLength) || 711m_BoundaryType == BoundaryType.Chunked || m_BoundaryType == BoundaryType.Multipart;
net\System\Net\HttpListenerResponse.cs (11)
36private BoundaryType m_BoundaryType; 45m_BoundaryType = BoundaryType.None; 233m_BoundaryType = (BoundaryType)value; 312m_BoundaryType = BoundaryType.ContentLength; 359if (m_ResponseState<ResponseState.SentHeaders && m_BoundaryType!=BoundaryType.Chunked) { 414internal BoundaryType BoundaryType { 648if (m_BoundaryType==BoundaryType.None) 655m_BoundaryType = BoundaryType.Chunked; 666if (m_BoundaryType==BoundaryType.ContentLength) { 672else if (m_BoundaryType==BoundaryType.Chunked) { 675else if (m_BoundaryType==BoundaryType.None) {