3 writes to m_value
System.Data (3)
fx\src\data\System\Data\SQLTypes\SQLByte.cs (3)
58m_value = 0; 65m_value = value; 576m_value = XmlConvert.ToByte(reader.ReadElementString());
32 references to m_value
System.Data (32)
fx\src\data\System\Data\SQLTypes\SQLByte.cs (32)
84return m_value; 110return IsNull ? SQLResource.NullString : m_value.ToString((IFormatProvider)null); 128return x.IsNull ? Null : new SqlByte((byte)~x.m_value); 142int iResult = (int)x.m_value + (int)y.m_value; 156int iResult = (int)x.m_value - (int)y.m_value; 170int iResult = (int)x.m_value * (int)y.m_value; 184if (y.m_value != 0) { 185return new SqlByte((byte)(x.m_value / y.m_value)); 198if (y.m_value != 0) { 199return new SqlByte((byte)(x.m_value % y.m_value)); 210return(x.IsNull || y.IsNull) ? Null : new SqlByte((byte)(x.m_value & y.m_value)); 217return(x.IsNull || y.IsNull) ? Null : new SqlByte((byte)(x.m_value | y.m_value)); 224return(x.IsNull || y.IsNull) ? Null : new SqlByte((byte)(x.m_value ^ y.m_value)); 342return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value == y.m_value); 356return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value < y.m_value); 363return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value > y.m_value); 370return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value <= y.m_value); 377return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value >= y.m_value); 589writer.WriteString(XmlConvert.ToString(m_value));