23 references to BoundaryType
Microsoft.AspNetCore.Server.HttpSys (23)
RequestProcessing\Request.cs (8)
31
private
BoundaryType
_contentBoundaryType;
48
_contentBoundaryType =
BoundaryType
.None;
217
if (_contentBoundaryType ==
BoundaryType
.None)
223
_contentBoundaryType =
BoundaryType
.Chunked;
231
_contentBoundaryType =
BoundaryType
.ContentLength;
236
_contentBoundaryType =
BoundaryType
.Invalid;
291
return (ContentLength.HasValue && ContentLength.Value > 0 && _contentBoundaryType ==
BoundaryType
.ContentLength)
292
|| _contentBoundaryType ==
BoundaryType
.Chunked;
RequestProcessing\Response.cs (9)
32
private
BoundaryType
_boundaryType;
47
_boundaryType =
BoundaryType
.None;
225
internal
BoundaryType
BoundaryType
439
_boundaryType =
BoundaryType
.ContentLength;
453
_boundaryType =
BoundaryType
.PassThrough;
461
_boundaryType =
BoundaryType
.ContentLength;
466
_boundaryType =
BoundaryType
.Chunked;
474
_boundaryType =
BoundaryType
.Close;
677
_boundaryType =
BoundaryType
.Close;
RequestProcessing\ResponseBody.cs (6)
186
var chunked = _requestContext.Response.BoundaryType ==
BoundaryType
.Chunked;
336
var chunked = _requestContext.Response.BoundaryType ==
BoundaryType
.Chunked;
468
else if (_requestContext.Response.BoundaryType ==
BoundaryType
.ContentLength)
483
if (endOfRequest && _requestContext.Response.BoundaryType ==
BoundaryType
.Close)
555
else if (_requestContext.Response.HasComputedHeaders && _requestContext.Response.BoundaryType ==
BoundaryType
.ContentLength
664
var chunked = _requestContext.Response.BoundaryType ==
BoundaryType
.Chunked;