Microsoft.SqlServer.TDS.Row.TDSRowToken.Inflate C# (CSharp) Method

Inflate() public method

Inflate the token NOTE: This operation is not continuable and assumes that the entire token is available in the stream
public Inflate ( Stream source ) : bool
source Stream Stream to inflate the token from
return bool
        public override bool Inflate(Stream source)
        {
            // Process each column
            foreach (TDSColumnData column in Metadata.Columns)
            {
                // Inflate and add data to the list
                Data.Add(InflateColumn(source, column));
            }

            return true;
        }