csharp 例如-CSHARP-GroupDocs.Search.Examples.CSharp-CustomFieldExtractor-Customfieldextractor.cs

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 例如-CSHARP-GroupDocs.Search.Examples.CSharp-CustomFieldExtractor-Customfieldextractor.cs相关的知识,希望对你有一定的参考价值。

// For complete examples and data files, please go to https://github.com/atirtahirgroupdocs/GroupDocs.Search-for-.NET
class CustomFieldExtractor : IFieldExtractor
{
    public string[] Extensions
    {
        //redefine internal field extractor
        get { return new[] {".doc", ".doc"}; }
        //extractor for supporting new document format
        //get { return new[] { ".ext1", ".ext2" }; }
    }

    public FieldInfo[] GetFields(string fileName)
    {
        FieldInfo[] result = new FieldInfo[4];
        result[0] = new FieldInfo("Content", "Hardcoded document content");
        result[1] = new FieldInfo("DocumentType", "MyDocumentType");
        result[2] = new FieldInfo("Author", "Hardcoded author");
        result[3] = new FieldInfo("CreationDate", "21.05.2004");
        return result;
    }
}

以上是关于csharp 例如-CSHARP-GroupDocs.Search.Examples.CSharp-CustomFieldExtractor-Customfieldextractor.cs的主要内容,如果未能解决你的问题,请参考以下文章

csharp 例如-CSHARP-GroupDocs.Search.Examples.CSharp索引,AddDocumentToIndex.cs

csharp 例如-CSHARP-GroupDocs.Search.Examples.CSharp索引,AddDocumentToIndexAsynchronously.cs

csharp 例如-CSHARP-GroupDocs.Search.Examples.CSharp索引,CreateIndexInMemory.cs

csharp 例如-CSHARP-GroupDocs.Search.Examples.CSharp索引,CreateIndexOnDisk.cs

csharp 例如-CSHARP-GroupDocs.Search.Examples.CSharp索引,CreateWithOverwritingExistedIndex.cs

csharp 例如-CSHARP-GroupDocs.Search.Examples.CSharp索引,CustomExtractor.cs