Class ParseOptions
- Namespace
- Textkernel.Tx.Models.API.Parsing
- Assembly
- Textkernel.Tx.SDK.dll
Options for parsing
public class ParseOptions : BasicParseOptions
- Inheritance
-
ParseOptions
- Derived
- Inherited Members
Properties
FlexRequests
Only used for resumes. Custom requests to ask during parsing. See the overview documentation for more details. Additional charges will apply.
public List<FlexRequest> FlexRequests { get; set; }
Property Value
GeocodeOptions
Use this property to also include geocoding in this parse request. The document will be parsed and then geocoded.
public GeocodeOptions GeocodeOptions { get; set; }
Property Value
IndexingOptions
If you are using Search & Match, use this property to also index/upload the document after it is parsed/geocoded. This means you only need to send the document to our API once instead of twice for parsing+indexing.
public IndexingOptionsGeneric IndexingOptions { get; set; }
Property Value
Remarks
NOTE: if you set this while parsing, you should try/catch for TxUsableResumeException or TxUsableJobException that are thrown when parsing was successful but an error occured during indexing
OutputCandidateImage
Only used for resumes. true to extract/output a candidate's image if it is present in the resume.
public bool OutputCandidateImage { get; set; }
Property Value
OutputHtml
true to output the document converted to HTML
public bool OutputHtml { get; set; }
Property Value
OutputPdf
true to output the document converted to PDF
public bool OutputPdf { get; set; }
Property Value
OutputRtf
true to output the document converted to RTF
public bool OutputRtf { get; set; }
Property Value
UseLLMParser
Only used for resumes. When true, and the document is English, the LLM Parser will be used. See https://developer.textkernel.com/tx-platform/v10/resume-parser/overview/llm-parser/#overview for more information. Additional charges will apply.
public bool UseLLMParser { get; set; }