2 writes to newLongValue
System.Data (2)
fx\src\data\System\Data\SqlClient\TdsParser.cs (2)
2506if (!stateObj.TryReadInt64(out env.newLongValue)) { 2512env.newLongValue = SqlInternalTransaction.NullTransactionId; // the server guarantees that zero is an invalid transaction id.
3 references to newLongValue
System.Data (3)
fx\src\data\System\Data\SqlClient\TdsParser.cs (3)
2089_currentTransaction.TransactionId = env[ii].newLongValue; // this is defined as a ULongLong in the server and in the TDS Spec. 2093_currentTransaction = new SqlInternalTransaction(_connHandler, transactionType, null, env[ii].newLongValue); 2509Debug.Assert(env.newLongValue != SqlInternalTransaction.NullTransactionId, "New transaction id is null?"); // the server guarantees that zero is an invalid transaction id.