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