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