Rename CopyToStream to GetEntryStream

This commit is contained in:
Matt Nadareski
2024-07-15 21:37:38 -04:00
parent e29610de4b
commit 8af80b79af
13 changed files with 20 additions and 20 deletions

View File

@@ -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;