3 writes to m_value
System.Data (3)
fx\src\data\System\Data\SQLTypes\SQLInt32.cs (3)
57m_value = 0; 64m_value = value; 597m_value = XmlConvert.ToInt32(reader.ReadElementString());
43 references to m_value
System.Data (43)
fx\src\data\System\Data\SQLTypes\SQLInt32.cs (43)
86return m_value; 110return IsNull ? SQLResource.NullString : m_value.ToString((IFormatProvider)null); 129return x.IsNull ? Null : new SqlInt32(-x.m_value); 136return x.IsNull ? Null : new SqlInt32(~x.m_value); 150int iResult = x.m_value + y.m_value; 151if (SameSignInt(x.m_value, y.m_value) && !SameSignInt(x.m_value, iResult)) 164int iResult = x.m_value - y.m_value; 165if (!SameSignInt(x.m_value, y.m_value) && SameSignInt(y.m_value, iResult)) 178long lResult = (long)x.m_value * (long)y.m_value; 193if (y.m_value != 0) { 194if ((x.m_value == x_iIntMin) && (y.m_value == -1)) 197return new SqlInt32(x.m_value / y.m_value); 210if (y.m_value != 0) { 211if ((x.m_value == x_iIntMin) && (y.m_value == -1)) 214return new SqlInt32(x.m_value % y.m_value); 225return(x.IsNull || y.IsNull) ? Null : new SqlInt32(x.m_value & y.m_value); 232return(x.IsNull || y.IsNull) ? Null : new SqlInt32(x.m_value | y.m_value); 239return(x.IsNull || y.IsNull) ? Null : new SqlInt32(x.m_value ^ y.m_value); 364return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value == y.m_value); 378return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value < y.m_value); 385return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value > y.m_value); 392return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value <= y.m_value); 399return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value >= y.m_value); 610writer.WriteString(XmlConvert.ToString(m_value));