StreamOutputAdapter

StreamOutputAdapter class

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

public class StreamOutputAdapter : OutputAdapter

생성자

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

속성

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

비고

더 알아보기

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

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

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

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

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

using (Stream stream = new MemoryStream()) // 스트림 생성
{
    StreamOutputAdapter adapter = new StreamOutputAdapter(stream); // 스트림 생성 output adapter
    index.GetDocumentText(documents[0], adapter); // 스트림에 문서 텍스트 생성
}

또한보십시오