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; 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) 478if (endOfRequest && _requestContext.Response.BoundaryType == BoundaryType.Close) 550else if (_requestContext.Response.HasComputedHeaders && _requestContext.Response.BoundaryType == BoundaryType.ContentLength 659var chunked = _requestContext.Response.BoundaryType == BoundaryType.Chunked;