TextPredictionGenerator.GetCandidatesAsync Méthode
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
GetCandidatesAsync(String) |
Récupère de façon asynchrone une liste de mots candidats en fonction du préfixe de caractères phonétiques fourni. |
GetCandidatesAsync(String, UInt32) |
Récupère de façon asynchrone une liste de mots candidats, jusqu’à un nombre maximal, en fonction du préfixe de caractères phonétiques fourni. |
GetCandidatesAsync(String, UInt32, TextPredictionOptions, IIterable<String>) |
Récupère de façon asynchrone une liste de mots candidats, jusqu’à un nombre maximal, en fonction du préfixe et des options de caractères phonétiques fournis. |
GetCandidatesAsync(String)
Récupère de façon asynchrone une liste de mots candidats en fonction du préfixe de caractères phonétiques fourni.
public:
virtual IAsyncOperation<IVectorView<Platform::String ^> ^> ^ GetCandidatesAsync(Platform::String ^ input) = GetCandidatesAsync;
/// [Windows.Foundation.Metadata.Overload("GetCandidatesAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IVectorView<winrt::hstring>> GetCandidatesAsync(winrt::hstring const& input);
[Windows.Foundation.Metadata.Overload("GetCandidatesAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IReadOnlyList<string>> GetCandidatesAsync(string input);
function getCandidatesAsync(input)
Public Function GetCandidatesAsync (input As String) As IAsyncOperation(Of IReadOnlyList(Of String))
Paramètres
- input
-
String
Platform::String
winrt::hstring
Caractères phonétiques de début des mots à retourner.
Retours
Objet d’opération asynchrone qui, une fois terminé, contient un IVectorView de chaînes, qui sont les mots prédits.
- Attributs
Voir aussi
S’applique à
GetCandidatesAsync(String, UInt32)
Récupère de façon asynchrone une liste de mots candidats, jusqu’à un nombre maximal, en fonction du préfixe de caractères phonétiques fourni.
public:
virtual IAsyncOperation<IVectorView<Platform::String ^> ^> ^ GetCandidatesAsync(Platform::String ^ input, unsigned int maxCandidates) = GetCandidatesAsync;
/// [Windows.Foundation.Metadata.Overload("GetCandidatesWithMaxCountAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IVectorView<winrt::hstring>> GetCandidatesAsync(winrt::hstring const& input, uint32_t const& maxCandidates);
[Windows.Foundation.Metadata.Overload("GetCandidatesWithMaxCountAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IReadOnlyList<string>> GetCandidatesAsync(string input, uint maxCandidates);
function getCandidatesAsync(input, maxCandidates)
Public Function GetCandidatesAsync (input As String, maxCandidates As UInteger) As IAsyncOperation(Of IReadOnlyList(Of String))
Paramètres
- input
-
String
Platform::String
winrt::hstring
Caractères phonétiques de début des mots à retourner.
- maxCandidates
-
UInt32
unsigned int
uint32_t
Nombre maximal de mots prédits à retourner.
Retours
Objet d’opération asynchrone qui, une fois terminé, contient un IVectorView de chaînes, qui sont les mots prédits.
- Attributs
Voir aussi
S’applique à
GetCandidatesAsync(String, UInt32, TextPredictionOptions, IIterable<String>)
Récupère de façon asynchrone une liste de mots candidats, jusqu’à un nombre maximal, en fonction du préfixe et des options de caractères phonétiques fournis.
public:
virtual IAsyncOperation<IVectorView<Platform::String ^> ^> ^ GetCandidatesAsync(Platform::String ^ input, unsigned int maxCandidates, TextPredictionOptions predictionOptions, IIterable<Platform::String ^> ^ previousStrings) = GetCandidatesAsync;
/// [Windows.Foundation.Metadata.Overload("GetCandidatesWithParametersAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IVectorView<winrt::hstring>> GetCandidatesAsync(winrt::hstring const& input, uint32_t const& maxCandidates, TextPredictionOptions const& predictionOptions, IIterable<winrt::hstring> const& previousStrings);
[Windows.Foundation.Metadata.Overload("GetCandidatesWithParametersAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IReadOnlyList<string>> GetCandidatesAsync(string input, uint maxCandidates, TextPredictionOptions predictionOptions, IEnumerable<string> previousStrings);
function getCandidatesAsync(input, maxCandidates, predictionOptions, previousStrings)
Public Function GetCandidatesAsync (input As String, maxCandidates As UInteger, predictionOptions As TextPredictionOptions, previousStrings As IEnumerable(Of String)) As IAsyncOperation(Of IReadOnlyList(Of String))
Paramètres
- input
-
String
Platform::String
winrt::hstring
Caractères phonétiques de début des mots à retourner.
- maxCandidates
-
UInt32
unsigned int
uint32_t
Nombre maximal de mots prédits à retourner.
- predictionOptions
- TextPredictionOptions
Valeur TextPredictionOptions contenant des options de prédiction.
Collection de mots précédemment entrés (pour faciliter la prédiction de texte).
Retours
Objet d’opération asynchrone qui, une fois terminé, contient un IVectorView de chaînes, qui sont les mots prédits.
- Attributs
Configuration requise pour Windows
Famille d’appareils |
Windows 10, version 1809 (introduit dans 10.0.17763.0)
|
API contract |
Windows.Foundation.UniversalApiContract (introduit dans v7.0)
|