GetDocumentText

GetDocumentText(DocumentInfo, OutputAdapter)

अनुक्रमित दस्तावेज़ के लिए HTML स्वरूपित पाठ उत्पन्न करता है और इसे आउटपुट एडेप्टर के माध्यम से स्थानांतरित करता है।

public void GetDocumentText(DocumentInfo documentInfo, OutputAdapter adapter)
पैरामीटर प्रकार विवरण
documentInfo DocumentInfo अनुक्रमित दस्तावेज़ जानकारी।
adapter OutputAdapter आउटपुट एडेप्टर।

उदाहरण

उदाहरण दर्शाता है कि इंडेक्स से इंडेक्स किए गए दस्तावेज़ का टेक्स्ट कैसे प्राप्त करें।

string indexFolder = @"c:\MyIndex\";
string documentsFolder = @"c:\MyDocuments\";
 
// निर्दिष्ट फ़ोल्डर में एक इंडेक्स बनाना
Index index = new Index(indexFolder);
 
// निर्दिष्ट फ़ोल्डर से दस्तावेज़ अनुक्रमण
index.Add(documentsFolder);
 
// अनुक्रमित दस्तावेजों की सूची प्राप्त करना
DocumentInfo[] documents = index.GetIndexedDocuments();
 
// एक दस्तावेज़ पाठ प्राप्त करना
if (documents.Length > 0)
{
    FileOutputAdapter outputAdapter = new FileOutputAdapter(@"C:\Text.html");
    index.GetDocumentText(documents[0], outputAdapter);
}

यह सभी देखें


GetDocumentText(DocumentInfo, OutputAdapter, TextOptions)

अनुक्रमित दस्तावेज़ के लिए HTML स्वरूपित पाठ उत्पन्न करता है और इसे आउटपुट एडेप्टर के माध्यम से स्थानांतरित करता है।

public void GetDocumentText(DocumentInfo documentInfo, OutputAdapter adapter, TextOptions options)
पैरामीटर प्रकार विवरण
documentInfo DocumentInfo अनुक्रमित दस्तावेज़ जानकारी।
adapter OutputAdapter आउटपुट एडेप्टर।
options TextOptions पाठ पुनर्प्राप्ति विकल्प।

यह सभी देखें