Microsoft.SqlServer.TDS.AutoTDSStream.Flush C# (CSharp) Method

Flush() public method

Flush the data into the underlying stream
public Flush ( ) : void
return void
        public override void Flush()
        {
            // Delegate to the inner stream
            InnerTDSStream.Flush();
        }