Exemple #1
0
 /// <summary>
 /// Adds words from the Specified Document to the specified Inverted Index Table
 /// </summary>
 /// <param name="doc">The document to be Tokenized.</param>
 /// <exception cref="TextExtractionException">Could not extract Files from the Document</exception>
 public static void AddFileFrom(Document doc)
 {
     String[] words = Semanter.Splitwords(x.Extract(doc.Address).Text);
     invt.AddDocument(words, doc);
 }