4 writes to _contentBoundaryType
Microsoft.AspNetCore.Server.HttpSys (4)
RequestProcessing\Request.cs (4)
45_contentBoundaryType = BoundaryType.None; 218_contentBoundaryType = BoundaryType.Chunked; 226_contentBoundaryType = BoundaryType.ContentLength; 231_contentBoundaryType = BoundaryType.Invalid;
3 references to _contentBoundaryType
Microsoft.AspNetCore.Server.HttpSys (3)
RequestProcessing\Request.cs (3)
212if (_contentBoundaryType == BoundaryType.None) 289return (ContentLength.HasValue && ContentLength.Value > 0 && _contentBoundaryType == BoundaryType.ContentLength) 290|| _contentBoundaryType == BoundaryType.Chunked;