Interface IArchiveStream
- Namespace
- Cobilas.GodotEngine.Utility.IO.Interfaces
- Assembly
- com.cobilas.godot.utility.dll
Represents an archive stream interface that extends basic stream functionality with position tracking and naming.
public interface IArchiveStream : IStream, IDisposable
- Inherited Members
Properties
BufferLength
Gets or sets the length of the buffer.
long BufferLength { get; set; }
Property Value
- long
The current length of the buffer in bytes.
Name
Gets the name of the archive stream.
string Name { get; }
Property Value
- string
The name identifier of the stream.
Position
Gets or sets the current position within the stream.
long Position { get; set; }
Property Value
- long
The current position within the stream.