Microsoft.SqlServer.TDS.SessionState.TDSSessionStateTextSizeOption.Deflate C# (CSharp) 메소드

Deflate() 공개 메소드

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

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