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)
213
if (
_contentBoundaryType
== BoundaryType.None)
287
return (ContentLength.HasValue && ContentLength.Value > 0 &&
_contentBoundaryType
== BoundaryType.ContentLength)
288
||
_contentBoundaryType
== BoundaryType.Chunked;