8 references to SqlChars
System.Data (8)
fx\src\data\Microsoft\SqlServer\Server\ValueUtilsSmi.cs (3)
395
result = new
SqlChars
( charBuffer );
413
result = new
SqlChars
( xmlValue.Value.ToCharArray() );
427
result = new
SqlChars
( stringValue.Value.ToCharArray() );
fx\src\data\System\Data\Common\SQLConvert.cs (1)
632
return new
SqlChars
(((string)value).ToCharArray());
fx\src\data\System\Data\Sql\SqlMetaData.cs (1)
951
value = new
SqlChars
(rgchNew);
fx\src\data\System\Data\SqlClient\SqlEnums.cs (1)
505
sqlVal = new
SqlChars
((System.Char[])comVal);
fx\src\data\System\Data\SQLTypes\SQLChars.cs (2)
119
public SqlChars(SqlString value) :
this
(value.IsNull ? (char[])null : value.Value.ToCharArray()) {
589
return new
SqlChars
((char[])null);