23 references to SqlValue
System.Data (23)
fx\src\data\System\Data\SqlClient\SqlBuffer.cs (16)
393return (SqlString)this.SqlValue; // anything else we haven't thought of goes through boxing. 432return (SqlBinary)this.SqlValue; // anything else we haven't thought of goes through boxing. 450return (SqlBoolean)this.SqlValue; // anything else we haven't thought of goes through boxing. 462return (SqlByte)this.SqlValue; // anything else we haven't thought of goes through boxing. 474return (SqlCachedBuffer)this.SqlValue; // anything else we haven't thought of goes through boxing. 492return (SqlXml)this.SqlValue; // anything else we haven't thought of goes through boxing. 510return (SqlDateTime)SqlValue; // anything else we haven't thought of goes through boxing. 529return (SqlDecimal)this.SqlValue; // anything else we haven't thought of goes through boxing. 541return (SqlDouble)this.SqlValue; // anything else we haven't thought of goes through boxing. 550return (SqlGuid)this.SqlValue; // anything else we haven't thought of goes through boxing. 568return (SqlInt16)this.SqlValue; // anything else we haven't thought of goes through boxing. 580return (SqlInt32)this.SqlValue; // anything else we haven't thought of goes through boxing. 592return (SqlInt64)this.SqlValue; // anything else we haven't thought of goes through boxing. 604return (SqlMoney)this.SqlValue; // anything else we haven't thought of goes through boxing. 616return (SqlSingle)this.SqlValue; // anything else we haven't thought of goes through boxing. 636return (SqlString)this.SqlValue; // anything else we haven't thought of goes through boxing.
fx\src\data\System\Data\SqlClient\SqlDataReader.cs (3)
2438return data.SqlValue; 2454return data.SqlValue; 2464return data.SqlValue;
fx\src\data\System\Data\SqlClient\SqlParameter.cs (2)
698return _sqlBufferReturnValue.SqlValue; 752return _sqlBufferReturnValue.SqlValue;
fx\src\data\System\Data\SqlClient\TdsParser.cs (2)
4732buffer[map[i]] = data.SqlValue; 4743buffer[map[i]] = data.SqlValue;