3 writes to m_value
System.Data (3)
fx\src\data\System\Data\SQLTypes\SQLInt16.cs (3)
57m_value = 0; 64m_value = value; 585m_value = XmlConvert.ToInt16(reader.ReadElementString());
37 references to m_value
System.Data (37)
fx\src\data\System\Data\SQLTypes\SQLInt16.cs (37)
83return m_value; 109return IsNull ? SQLResource.NullString : m_value.ToString((IFormatProvider)null); 128return x.IsNull ? Null : new SqlInt16((short)-x.m_value); 135return x.IsNull ? Null : new SqlInt16((short)~x.m_value); 149int iResult = (int)x.m_value + (int)y.m_value; 163int iResult = (int)x.m_value - (int)y.m_value; 177int iResult = (int)x.m_value * (int)y.m_value; 192if (y.m_value != 0) { 193if ((x.m_value == Int16.MinValue) && (y.m_value == -1)) 196return new SqlInt16((short)(x.m_value / y.m_value)); 209if (y.m_value != 0) { 210if ((x.m_value == Int16.MinValue) && (y.m_value == -1)) 213return new SqlInt16((short)(x.m_value % y.m_value)); 224return(x.IsNull || y.IsNull) ? Null : new SqlInt16((short)(x.m_value & y.m_value)); 231return(x.IsNull || y.IsNull) ? Null : new SqlInt16((short)((ushort)x.m_value | (ushort)y.m_value)); 238return(x.IsNull || y.IsNull) ? Null : new SqlInt16((short)(x.m_value ^ y.m_value)); 352return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value == y.m_value); 366return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value < y.m_value); 373return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value > y.m_value); 380return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value <= y.m_value); 387return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value >= y.m_value); 598writer.WriteString(XmlConvert.ToString(m_value));