C# 클래스 ScrewTurn.Wiki.SearchEngine.DumpedChange

Represents a change occurred to the index, structured for easy dumping to disk or database.
The class is not thread-safe.
파일 보기 프로젝트 열기: mono/ScrewTurnWiki 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
document DumpedDocument
mappings List
words List

공개 메소드들

메소드 설명
DumpedChange ( DumpedDocument document, List words, List mappings ) : System

Initializes a new instance of the DumpedChange class.

메소드 상세

DumpedChange() 공개 메소드

Initializes a new instance of the DumpedChange class.
If , or are null.
public DumpedChange ( DumpedDocument document, List words, List mappings ) : System
document DumpedDocument The dumped document data.
words List The list of dumped words data.
mappings List The list of dumped mappings data.
리턴 System

프로퍼티 상세

document 보호되어 있는 프로퍼티

The dumped document data.
protected DumpedDocument,ScrewTurn.Wiki.SearchEngine document
리턴 DumpedDocument

mappings 보호되어 있는 프로퍼티

The list of dumped mappings data.
protected List mappings
리턴 List

words 보호되어 있는 프로퍼티

The list of dumped words data.
protected List words
리턴 List