Class StorageStream
Storage stream wrapper.
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Bayat.SaveSystem.Storage
Assembly: Bayat.SaveSystem.Runtime.dll
Syntax
public abstract class StorageStream : IStorageStream, IDisposable
Constructors
| Improve this Doc View SourceStorageStream(String, Stream)
Initializes a new instance of StorageStream
Declaration
public StorageStream(string identifier, Stream stream)
Parameters
Type | Name | Description |
---|---|---|
System.String | identifier | The item identifier |
System.IO.Stream | stream | The underlying stream |
Fields
| Improve this Doc View Sourceidentifier
Declaration
protected readonly string identifier
Field Value
Type | Description |
---|---|
System.String |
underlyingStream
Declaration
protected readonly Stream underlyingStream
Field Value
Type | Description |
---|---|
System.IO.Stream |
Properties
| Improve this Doc View SourceIdentifier
The item identifier.
Declaration
public virtual string Identifier { get; }
Property Value
Type | Description |
---|---|
System.String |
UnderlyingStream
The underlying stream.
Declaration
public virtual Stream UnderlyingStream { get; }
Property Value
Type | Description |
---|---|
System.IO.Stream |
Methods
| Improve this Doc View SourceDispose()
Disposes the underlying stream.
Declaration
public virtual void Dispose()
Implements
System.IDisposable