4 writes to _contentBoundaryType
Microsoft.AspNetCore.Server.HttpSys (4)
RequestProcessing\Request.cs (4)
44_contentBoundaryType = BoundaryType.None; 217_contentBoundaryType = BoundaryType.Chunked; 225_contentBoundaryType = BoundaryType.ContentLength; 230_contentBoundaryType = BoundaryType.Invalid;
3 references to _contentBoundaryType
Microsoft.AspNetCore.Server.HttpSys (3)
RequestProcessing\Request.cs (3)
211if (_contentBoundaryType == BoundaryType.None) 288return (ContentLength.HasValue && ContentLength.Value > 0 && _contentBoundaryType == BoundaryType.ContentLength) 289|| _contentBoundaryType == BoundaryType.Chunked;