SIL.FieldWorks.Filters.DateTimeMatcher.DateTimeMatcher C# (CSharp) Method

DateTimeMatcher() public method

public DateTimeMatcher ( System.DateTime start, System.DateTime end, DateMatchType type ) : System
start System.DateTime
end System.DateTime
type DateMatchType
return System
		public DateTimeMatcher(DateTime start, DateTime end, DateMatchType type)
		{
			m_start = start;
			m_end = end;
			m_type = type;
			IsStartAD = true;
			IsEndAD = true;
			UnspecificMatching = false;
		}

Same methods

DateTimeMatcher::DateTimeMatcher ( ) : System