4 writes to _coercedValueIsSqlType
System.Data (4)
fx\src\data\System\Data\SqlClient\SqlParameter.cs (4)
1064destination._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)
827coercedSize = ((!_isNull) && (!_coercedValueIsDataFeed)) ? (StringSize(val, _coercedValueIsSqlType)) : 0; 840coercedSize = ((!_isNull) && (!_coercedValueIsDataFeed)) ? (StringSize(val, _coercedValueIsSqlType)) : 0; 851coercedSize = ((!_isNull) && (!_coercedValueIsDataFeed)) ? (BinarySize(val, _coercedValueIsSqlType)) : 0; 1064destination._coercedValueIsSqlType = _coercedValueIsSqlType; 1375return _coercedValueIsSqlType; 1392AssertPropertiesAreValid(_coercedValue, _coercedValueIsSqlType, _coercedValueIsDataFeed, IsNull);