23 references to BoundaryType
Microsoft.AspNetCore.Server.HttpSys (23)
RequestProcessing\Request.cs (8)
29private BoundaryType _contentBoundaryType; 46_contentBoundaryType = BoundaryType.None; 213if (_contentBoundaryType == BoundaryType.None) 219_contentBoundaryType = BoundaryType.Chunked; 227_contentBoundaryType = BoundaryType.ContentLength; 232_contentBoundaryType = BoundaryType.Invalid; 287return (ContentLength.HasValue && ContentLength.Value > 0 && _contentBoundaryType == BoundaryType.ContentLength) 288|| _contentBoundaryType == BoundaryType.Chunked;
RequestProcessing\Response.cs (9)
32private BoundaryType _boundaryType; 47_boundaryType = BoundaryType.None; 213internal BoundaryType BoundaryType 421_boundaryType = BoundaryType.ContentLength; 435_boundaryType = BoundaryType.PassThrough; 443_boundaryType = BoundaryType.ContentLength; 448_boundaryType = BoundaryType.Chunked; 456_boundaryType = BoundaryType.Close; 659_boundaryType = BoundaryType.Close;
RequestProcessing\ResponseBody.cs (6)
193var chunked = _requestContext.Response.BoundaryType == BoundaryType.Chunked; 343var chunked = _requestContext.Response.BoundaryType == BoundaryType.Chunked; 475else if (_requestContext.Response.BoundaryType == BoundaryType.ContentLength) 485if (endOfRequest && _requestContext.Response.BoundaryType == BoundaryType.Close) 557else if (_requestContext.Response.HasComputedHeaders && _requestContext.Response.BoundaryType == BoundaryType.ContentLength 666var chunked = _requestContext.Response.BoundaryType == BoundaryType.Chunked;