mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Rename CopyToStream to GetEntryStream
This commit is contained in:
@@ -209,8 +209,8 @@ namespace SabreTools.FileTypes
|
||||
/// Attempt to extract a stream from an archive
|
||||
/// </summary>
|
||||
/// <param name="entryName">Name of the entry to be extracted</param>
|
||||
/// <returns>MemoryStream representing the entry, null on error</returns>
|
||||
public virtual (Stream?, string?) CopyToStream(string entryName)
|
||||
/// <returns>Stream representing the entry, null on error</returns>
|
||||
public virtual (Stream?, string?) GetEntryStream(string entryName)
|
||||
{
|
||||
var ms = new MemoryStream();
|
||||
string? realentry = null;
|
||||
|
||||
Reference in New Issue
Block a user