Npgsql.NpgsqlMediator.SetSqlSent C# (CSharp) Method

SetSqlSent() public method

public SetSqlSent ( byte sqlSent, SQLSentType sqlSentType ) : void
sqlSent byte
sqlSentType SQLSentType
return void
        public void SetSqlSent(byte[] sqlSent, SQLSentType sqlSentType)
        {//We only use this if there is an error, so let's only get the string when that happens.
            _sqlSent = sqlSent;
            _sqlSentType = sqlSentType;
        }