Phun.Data.ContentModel.Dispose C# (CSharp) Method

Dispose() public method

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
public Dispose ( ) : void
return void
        public void Dispose()
        {
            var stream = this.DataStream;
            this.DataStream = null;

            if (stream != null && stream.CanRead)
            {
                stream.Dispose();
            }
        }