4 writes to _contentBoundaryType
Microsoft.AspNetCore.Server.HttpSys (4)
RequestProcessing\Request.cs (4)
50_contentBoundaryType = BoundaryType.None; 225_contentBoundaryType = BoundaryType.Chunked; 233_contentBoundaryType = BoundaryType.ContentLength; 238_contentBoundaryType = BoundaryType.Invalid;
3 references to _contentBoundaryType
Microsoft.AspNetCore.Server.HttpSys (3)
RequestProcessing\Request.cs (3)
219if (_contentBoundaryType == BoundaryType.None) 293return (ContentLength.HasValue && ContentLength.Value > 0 && _contentBoundaryType == BoundaryType.ContentLength) 294|| _contentBoundaryType == BoundaryType.Chunked;