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