StringOutputAdapter

StringOutputAdapter class

출력을 수집하는 출력 어댑터를 나타냅니다.String .

public class StringOutputAdapter : OutputAdapter

생성자

이름 설명
StringOutputAdapter(OutputFormat) 의 새 인스턴스를 초기화합니다.StringOutputAdapter 클래스.

속성

이름 설명
OutputFormat { get; } 출력 형식을 가져옵니다.

행동 양식

이름 설명
GetResult() 결과 문자열을 가져옵니다.

비고

더 알아보기

이 예제는 클래스의 일반적인 사용법을 보여줍니다.

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

Index index = new Index(indexFolder); // 지정된 폴더에 인덱스 생성

index.Add(documentsFolder); // 지정된 폴더에서 문서 인덱싱

DocumentInfo[] documents = index.GetIndexedDocuments(); // 색인된 문서에 대한 정보 가져오기

StringOutputAdapter adapter = new StringOutputAdapter(OutputFormat.Html); // 문자열 출력 어댑터 생성
index.GetDocumentText(documents[0], adapter); // 어댑터에 문서 텍스트 생성
String result = adapter.GetResult(); // 결과 얻기

또한보십시오