Microsoft.Samples.VisualStudio.SourceControlIntegration.SccProvider.DataStreamFromComStream.Dispose C# (CSharp) Method

Dispose() public method

Dispose this object and release the COM stream.
public Dispose ( ) : void
return void
        public new void Dispose()
        {
            try
            {
                if (comStream != null)
                {
                    Flush();
                    comStream = null;
                }
            }
            finally {
                base.Dispose();
            }
        }