3 writes to m_time
System.Data.Common (3)
System\Data\SQLTypes\SQLDateTime.cs (3)
91m_time = 0; 167m_time = timeTicks; 667m_time = st.TimeTicks;
12 references to m_time
System.Data.Common (12)
System\Data\SQLTypes\SQLDateTime.cs (12)
210long millisecond = (long)(value.m_time / TicksPerMillisecond + 0.5); 326return m_time; 519return (x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(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)); 542new SqlBoolean(x.m_day < y.m_day || (x.m_day == y.m_day && x.m_time <= y.m_time)); 548new SqlBoolean(x.m_day > y.m_day || (x.m_day == y.m_day && x.m_time >= y.m_time));