TokenInfo Constructeurs
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
TokenInfo() |
Initialise une nouvelle instance de la classe TokenInfo. |
TokenInfo(String, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>) |
Initialise une nouvelle instance de la classe TokenInfo. |
TokenInfo()
- Source:
- TokenInfo.cs
Initialise une nouvelle instance de la classe TokenInfo.
public TokenInfo ();
Public Sub New ()
S’applique à
TokenInfo(String, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>)
- Source:
- TokenInfo.cs
Initialise une nouvelle instance de la classe TokenInfo.
public TokenInfo (string token = default, int? startOffset = default, int? endOffset = default, int? position = default);
new Microsoft.Azure.Search.Models.TokenInfo : string * Nullable<int> * Nullable<int> * Nullable<int> -> Microsoft.Azure.Search.Models.TokenInfo
Public Sub New (Optional token As String = Nothing, Optional startOffset As Nullable(Of Integer) = Nothing, Optional endOffset As Nullable(Of Integer) = Nothing, Optional position As Nullable(Of Integer) = Nothing)
Paramètres
- token
- String
Jeton retourné par l’analyseur.
Position du jeton dans le texte d’entrée par rapport aux autres jetons. Le premier jeton du texte d’entrée a la position 0, le suivant a la position 1, et ainsi de suite. Selon l’analyseur utilisé, certains jetons peuvent avoir la même position, par exemple s’ils sont synonymes les uns des autres.
S’applique à
Azure SDK for .NET