Microsoft.SqlServer.TDS.SessionState.TDSSessionStateContextInfoOption.Deflate C# (CSharp) Méthode

Deflate() public méthode

Deflate state into the stream
public Deflate ( Stream destination ) : void
destination Stream
Résultat void
        public override void Deflate(Stream destination)
        {
            // Write state ID
            destination.WriteByte(StateID);

            // Store the value
            DeflateValue(destination, Value);
        }