共用方式為


TextAnalysisModelFactory.EntityLinkingMatch Method

Definition

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.

Applies to