3 writes to m_time
System.Data.Common (3)
System\Data\SQLTypes\SQLDateTime.cs (3)
79m_time = 0; 155m_time = timeTicks; 655m_time = st.TimeTicks;
12 references to m_time
System.Data.Common (12)
System\Data\SQLTypes\SQLDateTime.cs (12)
198long millisecond = (long)(value.m_time / s_SQLTicksPerMillisecond + 0.5); 314return m_time; 507return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_day == y.m_day && x.m_time == y.m_time); 518new SqlBoolean(x.m_day < y.m_day || (x.m_day == y.m_day && x.m_time < y.m_time)); 524new SqlBoolean(x.m_day > y.m_day || (x.m_day == y.m_day && x.m_time > y.m_time)); 530new SqlBoolean(x.m_day < y.m_day || (x.m_day == y.m_day && x.m_time <= y.m_time)); 536new SqlBoolean(x.m_day > y.m_day || (x.m_day == y.m_day && x.m_time >= y.m_time));