10 references to Value
System.Data (10)
fx\src\data\System\Data\Common\SQLConvert.cs (1)
721return new string(((SqlChars)value).Value);
fx\src\data\System\Data\SqlClient\SqlParameter.cs (3)
933value = new string(((SqlChars)value).Value); 1645return ((SqlChars)value).Value.Length; 1701return ((SqlChars) value).Value.Length;
fx\src\data\System\Data\SqlClient\TdsParser.cs (5)
8336s = new String(((SqlChars)value).Value); 10027String sch = new String(((SqlChars)value).Value); 10057return WriteCharArray(((SqlChars)value).Value, actualLength, offset, stateObj, canAccumulate:false); 10982String sch = new String(((SqlChars)value).Value); 11001return SerializeCharArray(((SqlChars)value).Value, actualLength, offset);
fx\src\data\System\Data\SQLTypes\SQLChars.cs (1)
440 return IsNull ? SqlString.Null : new String(Value);