3 writes to m_value
System.Data.Common (3)
System\Data\SQLTypes\SQLByte.cs (3)
33m_value = 0; 38m_value = value; 501m_value = XmlConvert.ToByte(reader.ReadElementString());
32 references to m_value
System.Data.Common (32)
System\Data\SQLTypes\SQLByte.cs (32)
54return m_value; 74return IsNull ? SQLResource.NullString : m_value.ToString((IFormatProvider)null!); 88return x.IsNull ? Null : new SqlByte(unchecked((byte)~x.m_value)); 100int iResult = x.m_value + y.m_value; 112int iResult = x.m_value - y.m_value; 124int iResult = x.m_value * y.m_value; 136if (y.m_value != 0) 138return new SqlByte((byte)(x.m_value / y.m_value)); 149if (y.m_value != 0) 151return new SqlByte((byte)(x.m_value % y.m_value)); 160return (x.IsNull || y.IsNull) ? Null : new SqlByte((byte)(x.m_value & y.m_value)); 165return (x.IsNull || y.IsNull) ? Null : new SqlByte((byte)(x.m_value | y.m_value)); 170return (x.IsNull || y.IsNull) ? Null : new SqlByte((byte)(x.m_value ^ y.m_value)); 268return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value == y.m_value); 278return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value < y.m_value); 283return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value > y.m_value); 288return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value <= y.m_value); 293return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_value >= y.m_value); 514writer.WriteString(XmlConvert.ToString(m_value));