19 references to Value
System.Data (19)
fx\src\data\System\Data\SqlClient\SqlBuffer.cs (13)
143return (Boolean)this.Value; // anything else we haven't thought of goes through boxing. 160return (Byte)this.Value; // anything else we haven't thought of goes through boxing. 190return (DateTime)this.Value; // anything else we haven't thought of goes through boxing. 213return (Decimal)this.Value; // anything else we haven't thought of goes through boxing. 224return (Double)this.Value; // anything else we haven't thought of goes through boxing. 249return (Int16)this.Value; // anything else we haven't thought of goes through boxing. 266return (Int32)this.Value; // anything else we haven't thought of goes through boxing. 283return (Int64)this.Value; // anything else we haven't thought of goes through boxing. 300return (Single)this.Value; // anything else we haven't thought of goes through boxing. 320return (String)this.Value; // anything else we haven't thought of goes through boxing. 378return (String)this.Value; // anything else we haven't thought of goes through boxing. 405return (TimeSpan)this.Value; // anything else we haven't thought of goes through boxing. 419return (DateTimeOffset)this.Value; // anything else we haven't thought of goes through boxing.
fx\src\data\System\Data\SqlClient\SqlDataReader.cs (5)
2447return connection.GetUdtValue(data.Value, metaData, false); 2595return data.Value; 2601return data.Value; 2607return connection.GetUdtValue(data.Value, metaData, true); 2616return data.Value;
fx\src\data\System\Data\SqlClient\SqlParameter.cs (1)
754return _sqlBufferReturnValue.Value;