4 writes to _contentBoundaryType
Microsoft.AspNetCore.Server.HttpSys (4)
RequestProcessing\Request.cs (4)
48_contentBoundaryType = BoundaryType.None; 223_contentBoundaryType = BoundaryType.Chunked; 231_contentBoundaryType = BoundaryType.ContentLength; 236_contentBoundaryType = BoundaryType.Invalid;
3 references to _contentBoundaryType
Microsoft.AspNetCore.Server.HttpSys (3)
RequestProcessing\Request.cs (3)
217if (_contentBoundaryType == BoundaryType.None) 291return (ContentLength.HasValue && ContentLength.Value > 0 && _contentBoundaryType == BoundaryType.ContentLength) 292|| _contentBoundaryType == BoundaryType.Chunked;