You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 18, 2018. It is now read-only.
System.NotSupportedException: Specified method is not supported.
at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.FrameRequestStream.Flush()
at System.Security.Cryptography.CryptoStream.FlushFinalBlock()
at System.Security.Cryptography.CryptoStream.Dispose(Boolean disposing)
Because read-only streams apparently can have Flush semantics and this behavior is expected by some of built-in stream wrappers (e. g. CryptoStream)
dotnet/corefx#27327 (review)aspnet#2341
Because read-only streams apparently can have Flush semantics and this behavior is expected by some of built-in stream wrappers (e. g. CryptoStream)
dotnet/corefx#27327 (review)aspnet#2341
kekekeks
added a commit
to kekekeks/KestrelHttpServer
that referenced
this issue
Feb 23, 2018
Because read-only streams apparently can have Flush semantics and this behavior is expected by some of built-in stream wrappers (e. g. CryptoStream)
dotnet/corefx#27327 (review)aspnet#2341
kekekeks
added a commit
to kekekeks/KestrelHttpServer
that referenced
this issue
Feb 23, 2018
Because read-only streams apparently can have Flush semantics and this behavior is expected by some of built-in stream wrappers (e. g. CryptoStream)
dotnet/corefx#27327 (review)aspnet#2341
Because read-only streams apparently can have Flush semantics and this behavior is expected by some of built-in stream wrappers (e. g. CryptoStream)
dotnet/corefx#27327 (review)#2341
CryptoStream.Dispose
is callingFlush
on the underlying stream even if said stream is read only - https://github.com/dotnet/corefx/issues/27326Apparently this is intended behavior of
CryptoStream
andFlush
shouldn't ever throw exceptions: dotnet/corefx#27327 (review)The text was updated successfully, but these errors were encountered: