Show / Hide Table of Contents

    Class StorageStream

    Storage stream wrapper.

    Inheritance
    System.Object
    StorageStream
    FileStorageStream
    PlayerPrefsStorageStream
    Implements
    IStorageStream
    System.IDisposable
    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 Source

    StorageStream(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 Source

    identifier

    Declaration
    protected readonly string identifier
    Field Value
    Type Description
    System.String
    | Improve this Doc View Source

    underlyingStream

    Declaration
    protected readonly Stream underlyingStream
    Field Value
    Type Description
    System.IO.Stream

    Properties

    | Improve this Doc View Source

    Identifier

    The item identifier.

    Declaration
    public virtual string Identifier { get; }
    Property Value
    Type Description
    System.String
    | Improve this Doc View Source

    UnderlyingStream

    The underlying stream.

    Declaration
    public virtual Stream UnderlyingStream { get; }
    Property Value
    Type Description
    System.IO.Stream

    Methods

    | Improve this Doc View Source

    Dispose()

    Disposes the underlying stream.

    Declaration
    public virtual void Dispose()

    Implements

    IStorageStream
    System.IDisposable
    • Improve this Doc
    • View Source
    • 0 Comments