4 writes to m_BoundaryType
System (4)
net\System\Net\HttpListenerRequest.cs (4)
256m_BoundaryType = BoundaryType.None; 395m_BoundaryType = BoundaryType.Chunked; 400m_BoundaryType = BoundaryType.ContentLength; 406m_BoundaryType = BoundaryType.Invalid;
5 references to m_BoundaryType
System (5)
net\System\Net\HttpListenerRequest.cs (5)
392if (m_BoundaryType==BoundaryType.None) { 411GlobalLog.Print("HttpListenerRequest#" + ValidationHelper.HashString(this) + "::ContentLength_get() returning m_ContentLength:" + m_ContentLength + " m_BoundaryType:" + m_BoundaryType); 710return (ContentLength64 > 0 && m_BoundaryType == BoundaryType.ContentLength) || 711m_BoundaryType == BoundaryType.Chunked || m_BoundaryType == BoundaryType.Multipart;