4 writes to _coercedValueIsSqlType
System.Data (4)
fx\src\data\System\Data\SqlClient\SqlParameter.cs (4)
1064
destination.
_coercedValueIsSqlType
= _coercedValueIsSqlType;
1354
_coercedValueIsSqlType
= (_coercedValue==null) ? false: _isSqlParameterSqlType; // set to null for output parameters that keeps _isSqlParameterSqlType
1361
_coercedValueIsSqlType
= ((_isSqlParameterSqlType) && (!typeChanged)); // Type changed always results in a CLR type
1467
_coercedValueIsSqlType
= false;
6 references to _coercedValueIsSqlType
System.Data (6)
fx\src\data\System\Data\SqlClient\SqlParameter.cs (6)
827
coercedSize = ((!_isNull) && (!_coercedValueIsDataFeed)) ? (StringSize(val,
_coercedValueIsSqlType
)) : 0;
840
coercedSize = ((!_isNull) && (!_coercedValueIsDataFeed)) ? (StringSize(val,
_coercedValueIsSqlType
)) : 0;
851
coercedSize = ((!_isNull) && (!_coercedValueIsDataFeed)) ? (BinarySize(val,
_coercedValueIsSqlType
)) : 0;
1064
destination._coercedValueIsSqlType =
_coercedValueIsSqlType
;
1375
return
_coercedValueIsSqlType
;
1392
AssertPropertiesAreValid(_coercedValue,
_coercedValueIsSqlType
, _coercedValueIsDataFeed, IsNull);