AdvancedLauncher.SDK.Management.FileSystemManager.WriteStream C# (CSharp) Метод

WriteStream() публичный Метод

Writes stream to archive.
public WriteStream ( Stream sourceStream, uint entryId ) : bool
sourceStream Stream Source stream
entryId uint ID of destination file
Результат bool
        public bool WriteStream(Stream sourceStream, uint entryId)
        {
            if (!_WriteStream(sourceStream, entryId)) {
                return false;
            }
            if (!WriteMapFile()) {
                return false;
            }
            return true;
        }

Same methods

FileSystemManager::WriteStream ( Stream sourceStream, string destination ) : bool