3 writes to _isSqlParameterSqlType
System.Data (3)
fx\src\data\System\Data\SqlClient\SqlParameter.cs (3)
518
_isSqlParameterSqlType
= value;
763
_isSqlParameterSqlType
= (_valueAsINullable != null);
1058
destination.
_isSqlParameterSqlType
= _isSqlParameterSqlType;
7 references to _isSqlParameterSqlType
System.Data (7)
fx\src\data\System\Data\SqlClient\SqlParameter.cs (7)
515
return
_isSqlParameterSqlType
;
764
_isNull = ((_value == null) || (_value == DBNull.Value) || ((
_isSqlParameterSqlType
) && (_valueAsINullable.IsNull)));
780
_isNull = ((_value == null) || (_value == DBNull.Value) || ((
_isSqlParameterSqlType
) && (_valueAsINullable.IsNull)));
1058
destination._isSqlParameterSqlType =
_isSqlParameterSqlType
;
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
1432
Type valueType = _sqlBufferReturnValue.GetTypeFromStorageType (
_isSqlParameterSqlType
);