TextAnalysisModelFactory.EntityLinkingMatch Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of EntityLinkingMatch.
public static Azure.AI.Language.Text.EntityLinkingMatch EntityLinkingMatch (double confidenceScore = 0, string text = default, int offset = 0, int length = 0);
static member EntityLinkingMatch : double * string * int * int -> Azure.AI.Language.Text.EntityLinkingMatch
Public Shared Function EntityLinkingMatch (Optional confidenceScore As Double = 0, Optional text As String = Nothing, Optional offset As Integer = 0, Optional length As Integer = 0) As EntityLinkingMatch
Parameters
- confidenceScore
- Double
If a well known item is recognized, a decimal number denoting the confidence level between 0 and 1 will be returned.
- text
- String
Entity text as appears in the request.
- offset
- Int32
Start position for the entity match text.
- length
- Int32
Length for the entity match text.
Returns
A new EntityLinkingMatch instance for mocking.