23 references to BoundaryType
Microsoft.AspNetCore.Server.HttpSys (23)
RequestProcessing\Request.cs (8)
28private BoundaryType _contentBoundaryType; 45_contentBoundaryType = BoundaryType.None; 212if (_contentBoundaryType == BoundaryType.None) 218_contentBoundaryType = BoundaryType.Chunked; 226_contentBoundaryType = BoundaryType.ContentLength; 231_contentBoundaryType = BoundaryType.Invalid; 286return (ContentLength.HasValue && ContentLength.Value > 0 && _contentBoundaryType == BoundaryType.ContentLength) 287|| _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;