2 writes to FinalBoundaryFound
Microsoft.AspNetCore.WebUtilities (2)
MultipartReaderStream.cs (2)
225stream.FinalBoundaryFound = true; 311stream.FinalBoundaryFound = true;
3 references to FinalBoundaryFound
Microsoft.AspNetCore.WebUtilities (3)
MultipartReader.cs (1)
92if (_currentStream.FinalBoundaryFound)
MultipartReaderStream.cs (2)
227Debug.Assert(stream.FinalBoundaryFound || remainder.IsEmpty, "Un-expected data found on the boundary line: " + remainder.ToString()); 313Debug.Assert(stream.FinalBoundaryFound || string.Equals(string.Empty, remainder, StringComparison.Ordinal), "Un-expected data found on the boundary line: " + remainder);