aspnetcore/test/Microsoft.AspNet.Mvc.ViewFe.../ViewFeatures
Ryan Nowak c304984a8d Fix #3501 - Issues with Flush
Calling Flush[Async]() on the writer will NOT flush the stream.
Calling Flush[Async]() in Razor will flush both the writer and the stream.

Our normal flow will be to flush the writer, but not the stream. This
avoids chunking, but allows us to do a WriteAsync on the stream as part of
the call to FlushAsync. This is done to avoid a synchronous write due to
Dispose calling Flush on the writer, which needs to call Write on the
stream.

See issue for extensive background.
2016-01-07 14:52:22 -08:00
..
AttributeDictionaryTest.cs
DefaultDisplayTemplatesTest.cs
DefaultEditorTemplatesTest.cs Make Begin[Route]Form include antiforgery 2016-01-07 13:24:01 -08:00
DefaultHtmlGeneratorTest.cs OptionsModel => Options rename 2015-12-21 15:00:31 -08:00
ExpressionMetadataProviderTest.cs
HtmlContentWrapperTextWriterTest.cs Reacting to IHtmlContentBuilder changes 2015-12-31 11:52:26 -08:00
ModelExplorerExtensionsTest.cs
ModelExplorerTest.cs
PartialViewResultExecutorTest.cs
SaveTempDataFilterTest.cs
SessionStateTempDataProviderTest.cs
StringHtmlContentTest.cs
TempDataDictionaryFactoryTest.cs
TempDataDictionaryTest.cs
ViewDataDictionaryOfTModelTest.cs
ViewDataDictionaryTest.cs
ViewDataOfTTest.cs
ViewExecutorTest.cs Fix #3501 - Issues with Flush 2016-01-07 14:52:22 -08:00
ViewResultExecutorTest.cs