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; 289return (ContentLength.HasValue && ContentLength.Value > 0 && _contentBoundaryType == BoundaryType.ContentLength) 290|| _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;