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