DateFormats

SearchOptions.DateFormats property

날짜 범위 검색을 위한 날짜 형식 모음을 가져옵니다. 기본 날짜 형식은 ‘dd.MM.yyyy’, ‘MM/dd/yyyy’ 및 ‘yyyy-MM-dd’입니다.

public DateFormatCollection DateFormats { get; }

자산 가치

날짜 범위 검색을 위한 날짜 형식 모음입니다.

이 예는 검색을 위한 날짜 형식을 설정하는 방법을 보여줍니다.

string indexFolder = @"c:\MyIndex\";
string documentsFolder = @"c:\MyDocuments\";
string query = "Einstein";

Index index = new Index(indexFolder); // 지정된 폴더에 인덱스 생성
index.Add(documentsFolder); // 지정된 폴더에서 문서 인덱싱

SearchOptions options = new SearchOptions();
options.DateFormats.Clear(); // 기본 날짜 형식 제거
DateFormatElement[] elements = new DateFormatElement[]
{
    DateFormatElement.MonthTwoDigits,
    DateFormatElement.DayOfMonthTwoDigits,
    DateFormatElement.YearFourDigits,
};
// 날짜 형식 패턴 'MM/dd/yyyy' 생성
DateFormat dateFormat = new DateFormat(elements, "/");
options.DateFormats.Add(dateFormat);

SearchResult result = index.Search(query, options); // 인덱스에서 검색

또한보십시오