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