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