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