8 references to SqlChars
System.Data (8)
fx\src\data\Microsoft\SqlServer\Server\ValueUtilsSmi.cs (3)
395result = new SqlChars( charBuffer ); 413result = new SqlChars( xmlValue.Value.ToCharArray() ); 427result = new SqlChars( stringValue.Value.ToCharArray() );
fx\src\data\System\Data\Common\SQLConvert.cs (1)
632return new SqlChars(((string)value).ToCharArray());
fx\src\data\System\Data\Sql\SqlMetaData.cs (1)
951value = new SqlChars(rgchNew);
fx\src\data\System\Data\SqlClient\SqlEnums.cs (1)
505sqlVal = 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);