23 references to BoundaryType
Microsoft.AspNetCore.Server.HttpSys (23)
RequestProcessing\Request.cs (8)
29
private
BoundaryType
_contentBoundaryType;
46
_contentBoundaryType =
BoundaryType
.None;
213
if (_contentBoundaryType ==
BoundaryType
.None)
219
_contentBoundaryType =
BoundaryType
.Chunked;
227
_contentBoundaryType =
BoundaryType
.ContentLength;
232
_contentBoundaryType =
BoundaryType
.Invalid;
287
return (ContentLength.HasValue && ContentLength.Value > 0 && _contentBoundaryType ==
BoundaryType
.ContentLength)
288
|| _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)
478
if (endOfRequest && _requestContext.Response.BoundaryType ==
BoundaryType
.Close)
550
else if (_requestContext.Response.HasComputedHeaders && _requestContext.Response.BoundaryType ==
BoundaryType
.ContentLength
659
var chunked = _requestContext.Response.BoundaryType ==
BoundaryType
.Chunked;