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
Currently, only Func argument supported for telling patch file.
It seems strange for normal usage.
And also concerned about disposing opened stream via Func<>.
The text was updated successfully, but these errors were encountered:
byte[] would be a reasonable overload, but does require the entire patch file to be in memory.
The patch method needs to read from three simultaneous positions in the Stream simultaneously; a forward-only or non-Seekable Stream would fail (and seeking a regular Stream might be inefficient).
All Streams opened by the Func<Stream> passed to the method are disposed automatically.
Currently, only Func argument supported for telling patch file.
It seems strange for normal usage.
And also concerned about disposing opened stream via Func<>.
The text was updated successfully, but these errors were encountered: