Interface IFulltextIndexProvider
Method which must be implemented to create a fulltext provider
Namespace: Simplic.Framework.Extension.FulltextIndex
Assembly: Simplic.Framework.Extension.dll
Syntax
public interface IFulltextIndexProvider
Methods
| Improve this Doc View SourceLoadConfiguration(String)
Load fulltext congifuration and use in the given provider
Declaration
void LoadConfiguration(string ConfigurationXml)
Parameters
Type | Name | Description |
---|---|---|
System.String | ConfigurationXml | Xml which contains the configuration |
SetDocumentFulltext(Guid, String, String)
Save fulltext text for documents
Declaration
void SetDocumentFulltext(Guid BlobGuid, string Content, string originalContent)
Parameters
Type | Name | Description |
---|---|---|
System.Guid | BlobGuid | Id of the document |
System.String | Content | Content which will be search able |
System.String | originalContent | Original fulltext content. Normally is only different from content for OCR-Content |
SetInstanceDataFullText(Guid, Guid, String)
Save fulltext text for instance data
Declaration
void SetInstanceDataFullText(Guid StackGuid, Guid InstanceDataGuid, string Content)
Parameters
Type | Name | Description |
---|---|---|
System.Guid | StackGuid | Id of the stack |
System.Guid | InstanceDataGuid | Id of the isntance data |
System.String | Content | Fulltext content |