GSF.IO.FileStructure.Media.MemoryPoolFile.CreateIoSession C# (CSharp) Method

CreateIoSession() public method

Creates a BinaryStreamIoSessionBase that can be used to read from this disk medium.
public CreateIoSession ( ) : BinaryStreamIoSessionBase
return GSF.IO.Unmanaged.BinaryStreamIoSessionBase
        public BinaryStreamIoSessionBase CreateIoSession()
        {
            if (IsDisposed)
                throw new ObjectDisposedException("MemoryStream");
            return m_ioSession;
        }