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