28 references to SqlInt16
System.Data (28)
fx\src\data\Microsoft\SqlServer\Server\ValueUtilsSmi.cs (2)
530
result = new
SqlInt16
( temp );
1044
result = new
SqlInt16
( GetInt16_Unchecked( sink, getters, ordinal ) );
fx\src\data\System\Data\Common\SQLConvert.cs (1)
642
return new
SqlInt16
(XmlConvert.ToInt16((string)value));
fx\src\data\System\Data\SqlClient\SqlBuffer.cs (1)
566
return new
SqlInt16
(_value._int16);
fx\src\data\System\Data\SqlClient\SqlEnums.cs (1)
513
sqlVal = new
SqlInt16
((Int16)comVal);
fx\src\data\System\Data\SQLTypes\SQLInt16.cs (23)
94
return new
SqlInt16
(x);
119
return new
SqlInt16
(Int16.Parse(s, (IFormatProvider)null));
128
return x.IsNull ? Null : new
SqlInt16
((short)-x.m_value);
135
return x.IsNull ? Null : new
SqlInt16
((short)~x.m_value);
153
return new
SqlInt16
((short)iResult);
167
return new
SqlInt16
((short)iResult);
182
return new
SqlInt16
((short)iResult);
196
return new
SqlInt16
((short)(x.m_value / y.m_value));
213
return new
SqlInt16
((short)(x.m_value % y.m_value));
224
return(x.IsNull || y.IsNull) ? Null : new
SqlInt16
((short)(x.m_value & y.m_value));
231
return(x.IsNull || y.IsNull) ? Null : new
SqlInt16
((short)((ushort)x.m_value | (ushort)y.m_value));
238
return(x.IsNull || y.IsNull) ? Null : new
SqlInt16
((short)(x.m_value ^ y.m_value));
250
return x.IsNull ? Null : new
SqlInt16
((short)(x.ByteValue));
258
return x.IsNull ? Null : new
SqlInt16
((short)(x.Value));
275
return new
SqlInt16
((short)value);
290
return new
SqlInt16
((short)value);
305
return new
SqlInt16
((short)value);
320
return new
SqlInt16
((short)value);
328
return x.IsNull ? Null : new
SqlInt16
(checked((short)x.ToInt32()));
344
return x.IsNull ? Null : new
SqlInt16
(Int16.Parse(x.Value, (IFormatProvider)null));
616
public static readonly SqlInt16 Zero = new
SqlInt16
(0);
620
public static readonly SqlInt16 MinValue = new
SqlInt16
(Int16.MinValue);
624
public static readonly SqlInt16 MaxValue = new
SqlInt16
(Int16.MaxValue);