DocAI
EntityRecognition Method (TextRange, String,
String
)
|
Recognize the entities within the text range.
Namespace:
Spire.Doc.AI
Assembly:
Spire.Doc (in Spire.Doc.dll) Version: 13.2.3.0 (13.2.3.3046)
Syntax
public string EntityRecognition(
TextRange textRange,
string language = "",
string[] classifications = null
)
Public Function EntityRecognition (
textRange As TextRange,
Optional language As String = "",
Optional classifications As String() = Nothing
) As String
public:
String^ EntityRecognition(
TextRange^ textRange,
String^ language = L"",
array<String^>^ classifications = nullptr
)
member EntityRecognition :
textRange : TextRange *
?language : string *
?classifications : string[]
(* Defaults:
let _language = defaultArg language ""
let _classifications = defaultArg classifications null
*)
-> string
Parameters
-
textRange
-
Type:
Spire.Doc.Fields
TextRange
The text range representing the source data.
-
language
(Optional)
-
Type:
System
String
-
classifications
(Optional)
-
Type:
System
String
Return Value
Type:
String
A sync task that returns a string indicating whether the processing was successful or not.
See Also