Transparent
4.5.1
Not planned
In Windows Store apps, Windows Runtime stream adapters no longer call the FlushAsync method from the Dispose method.
- Quirked
- Build-time break
This change should be transparent. Developers can restore the previous behavior by writing code like this:
using (var stream = GetWindowsRuntimeStream() as Stream)
{
// do something
await stream.FlushAsync();
}
- Not detectable via API analysis
Core