4 writes to _contentBoundaryType
Microsoft.AspNetCore.Server.HttpSys (4)
RequestProcessing\Request.cs (4)
46_contentBoundaryType = BoundaryType.None; 219_contentBoundaryType = BoundaryType.Chunked; 227_contentBoundaryType = BoundaryType.ContentLength; 232_contentBoundaryType = BoundaryType.Invalid;
3 references to _contentBoundaryType
Microsoft.AspNetCore.Server.HttpSys (3)
RequestProcessing\Request.cs (3)
213if (_contentBoundaryType == BoundaryType.None) 287return (ContentLength.HasValue && ContentLength.Value > 0 && _contentBoundaryType == BoundaryType.ContentLength) 288|| _contentBoundaryType == BoundaryType.Chunked;