1 write to _decimalBits
System.Data (1)
fx\src\data\System\Data\SqlClient\TdsParser.cs (1)
6496
stateObj.
_decimalBits
= Decimal.GetBits(value);
6 references to _decimalBits
System.Data (6)
fx\src\data\System\Data\SqlClient\TdsParser.cs (6)
6357
bits = stateObj.
_decimalBits
; // used alloc'd array if we have one already
6497
Debug.Assert(null != stateObj.
_decimalBits
, "decimalBits should be filled in at TdsExecuteRPC time");
6519
if (0x80000000 == (stateObj.
_decimalBits
[3] & 0x80000000))
6524
WriteInt(stateObj.
_decimalBits
[0], stateObj);
6525
WriteInt(stateObj.
_decimalBits
[1], stateObj);
6526
WriteInt(stateObj.
_decimalBits
[2], stateObj);