3 writes to m_time
System.Data (3)
fx\src\data\System\Data\SQLTypes\SQLDateTime.cs (3)
111m_time = 0; 179m_time = timeTicks; 645m_time = st.TimeTicks;
12 references to m_time
System.Data (12)
fx\src\data\System\Data\SQLTypes\SQLDateTime.cs (12)
219 long millisecond = (long)(value.m_time / SQLTicksPerMillisecond + 0.5); 322return m_time; 502return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_day == y.m_day && x.m_time == y.m_time); 511new SqlBoolean(x.m_day < y.m_day || (x.m_day == y.m_day && x.m_time < y.m_time)); 516new SqlBoolean(x.m_day > y.m_day || (x.m_day == y.m_day && x.m_time > y.m_time)); 521new SqlBoolean(x.m_day < y.m_day || (x.m_day == y.m_day && x.m_time <= y.m_time)); 526new SqlBoolean(x.m_day > y.m_day || (x.m_day == y.m_day && x.m_time >= y.m_time));