23 references to BoundaryType
Microsoft.AspNetCore.Server.HttpSys (23)
RequestProcessing\Request.cs (8)
27
private
BoundaryType
_contentBoundaryType;
44
_contentBoundaryType =
BoundaryType
.None;
211
if (_contentBoundaryType ==
BoundaryType
.None)
217
_contentBoundaryType =
BoundaryType
.Chunked;
225
_contentBoundaryType =
BoundaryType
.ContentLength;
230
_contentBoundaryType =
BoundaryType
.Invalid;
288
return (ContentLength.HasValue && ContentLength.Value > 0 && _contentBoundaryType ==
BoundaryType
.ContentLength)
289
|| _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;