23 references to BoundaryType
Microsoft.AspNetCore.Server.HttpSys (23)
RequestProcessing\Request.cs (8)
28
private
BoundaryType
_contentBoundaryType;
45
_contentBoundaryType =
BoundaryType
.None;
212
if (_contentBoundaryType ==
BoundaryType
.None)
218
_contentBoundaryType =
BoundaryType
.Chunked;
226
_contentBoundaryType =
BoundaryType
.ContentLength;
231
_contentBoundaryType =
BoundaryType
.Invalid;
289
return (ContentLength.HasValue && ContentLength.Value > 0 && _contentBoundaryType ==
BoundaryType
.ContentLength)
290
|| _contentBoundaryType ==
BoundaryType
.Chunked;
RequestProcessing\Response.cs (9)
31
private
BoundaryType
_boundaryType;
46
_boundaryType =
BoundaryType
.None;
215
internal
BoundaryType
BoundaryType
423
_boundaryType =
BoundaryType
.ContentLength;
437
_boundaryType =
BoundaryType
.PassThrough;
445
_boundaryType =
BoundaryType
.ContentLength;
450
_boundaryType =
BoundaryType
.Chunked;
458
_boundaryType =
BoundaryType
.Close;
661
_boundaryType =
BoundaryType
.Close;
RequestProcessing\ResponseBody.cs (6)
193
var chunked = _requestContext.Response.BoundaryType ==
BoundaryType
.Chunked;
343
var chunked = _requestContext.Response.BoundaryType ==
BoundaryType
.Chunked;
475
else if (_requestContext.Response.BoundaryType ==
BoundaryType
.ContentLength)
485
if (endOfRequest && _requestContext.Response.BoundaryType ==
BoundaryType
.Close)
557
else if (_requestContext.Response.HasComputedHeaders && _requestContext.Response.BoundaryType ==
BoundaryType
.ContentLength
666
var chunked = _requestContext.Response.BoundaryType ==
BoundaryType
.Chunked;