EpLibrary.cs.BinaryFile.SetStream C# (CSharp) Method

SetStream() public method

Set the stream as given stream
public SetStream ( MemoryStream stream ) : void
stream System.IO.MemoryStream the stream to set
return void
        public void SetStream(MemoryStream stream)
        {
            lock (m_baseBinaryLock)
            {
                m_stream = stream;
            }
        }