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

SetLength() public method

Set stream length
public SetLength ( long value ) : void
value long
return void
        public override void SetLength(long value)
        {
            // Delegate to the inner stream
            InnerTDSStream.SetLength(value);
        }