2 writes to newLongValue
System.Data (2)
fx\src\data\System\Data\SqlClient\TdsParser.cs (2)
2506
if (!stateObj.TryReadInt64(out env.
newLongValue
)) {
2512
env.
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
);
2509
Debug.Assert(env.
newLongValue
!= SqlInternalTransaction.NullTransactionId, "New transaction id is null?"); // the server guarantees that zero is an invalid transaction id.