Declaring Type: MindeeClient
Namespace: Mindee
Assembly: Mindee
Assembly Version: 3.21.0+995c229708fe61b0dacbe0bfca8ad9e39db87623
Signature | Description |
---|---|
ParseAsync(LocalInputSource, CustomEndpoint, PredictOptions, PageOptions) | Call Custom prediction API on a local input source and parse the results. |
ParseAsync(UrlInputSource, CustomEndpoint, PredictOptions) | Call Custom prediction API on a URL input source and parse the results. |
ParseAsync<TInferenceModel>(LocalInputSource, CustomEndpoint, PredictOptions, PageOptions) | Call Generated prediction API on a local input source and parse the results. |
ParseAsync<TInferenceModel>(LocalInputSource, PredictOptions, PageOptions) | Call Standard prediction API on a local input source and parse the results. |
ParseAsync<TInferenceModel>(UrlInputSource, CustomEndpoint, PredictOptions) | Call Generated prediction API on a URL input source and parse the results. |
ParseAsync<TInferenceModel>(UrlInputSource, PredictOptions) | Call Standard prediction API on a URL input source and parse the results. |
Call Custom prediction API on a local input source and parse the results.
[AsyncStateMachine(Mindee.MindeeClient/<ParseAsync>d__6)]
public Task<PredictResponse<CustomV1>> ParseAsync(LocalInputSource inputSource, CustomEndpoint endpoint, PredictOptions predictOptions = null, PageOptions pageOptions = null);
inputSource
LocalInputSource
endpoint
CustomEndpoint
predictOptions
PredictOptions
pageOptions
PageOptions
Task<PredictResponse<CustomV1>>
Call Custom prediction API on a URL input source and parse the results.
[AsyncStateMachine(Mindee.MindeeClient/<ParseAsync>d__7)]
public Task<PredictResponse<CustomV1>> ParseAsync(UrlInputSource inputSource, CustomEndpoint endpoint, PredictOptions predictOptions = null);
inputSource
UrlInputSource
endpoint
CustomEndpoint
predictOptions
PredictOptions
Task<PredictResponse<CustomV1>>
Call Generated prediction API on a local input source and parse the results.
[AsyncStateMachine(Mindee.MindeeClient/<ParseAsync>d__8`1)]
public Task<PredictResponse<GeneratedV1>> ParseAsync<TInferenceModel>(LocalInputSource inputSource, CustomEndpoint endpoint, PredictOptions predictOptions = null, PageOptions pageOptions = null);
TInferenceModel
inputSource
LocalInputSource
endpoint
CustomEndpoint
predictOptions
PredictOptions
pageOptions
PageOptions
Task<PredictResponse<GeneratedV1>>
Call Standard prediction API on a local input source and parse the results.
[AsyncStateMachine(Mindee.MindeeClient/<ParseAsync>d__14`1)]
public Task<PredictResponse<TInferenceModel>> ParseAsync<TInferenceModel>(LocalInputSource inputSource, PredictOptions predictOptions = null, PageOptions pageOptions = null);
TInferenceModel
Set the prediction model used to parse the document. The response object will be instantiated based on this parameter.
inputSource
LocalInputSource
predictOptions
PredictOptions
pageOptions
PageOptions
Task<PredictResponse<TInferenceModel>>
Call Generated prediction API on a URL input source and parse the results.
[AsyncStateMachine(Mindee.MindeeClient/<ParseAsync>d__9`1)]
public Task<PredictResponse<TInferenceModel>> ParseAsync<TInferenceModel>(UrlInputSource inputSource, CustomEndpoint endpoint, PredictOptions predictOptions = null);
TInferenceModel
Set the prediction model used to parse the document. The response object will be instantiated based on this parameter.
inputSource
UrlInputSource
endpoint
CustomEndpoint
predictOptions
PredictOptions
Task<PredictResponse<TInferenceModel>>
Call Standard prediction API on a URL input source and parse the results.
[AsyncStateMachine(Mindee.MindeeClient/<ParseAsync>d__15`1)]
public Task<PredictResponse<TInferenceModel>> ParseAsync<TInferenceModel>(UrlInputSource inputSource, PredictOptions predictOptions = null);
TInferenceModel
Set the prediction model used to parse the document. The response object will be instantiated based on this parameter.
inputSource
UrlInputSource
predictOptions
PredictOptions
Task<PredictResponse<TInferenceModel>>
Documentation generated by MdDocs