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

Flush() public method

Flush the pending data to the stream.
public Flush ( ) : void
return void
        public override void Flush()
        {
            if (comStream != null)
            {
                try
                {
                    comStream.Commit(0);
                }
                catch (Exception)
                {
                }
            }
        }