Partager via


TextConversionGenerator.GetCandidatesAsync Méthode

Définition

Surcharges

GetCandidatesAsync(String)

Obtient de façon asynchrone une liste de mots candidats en fonction des caractères phonétiques fournis.

GetCandidatesAsync(String, UInt32)

Obtient de façon asynchrone une liste de mots candidats, jusqu’à un nombre maximal, en fonction des caractères phonétiques fournis.

GetCandidatesAsync(String)

Obtient de façon asynchrone une liste de mots candidats en fonction des caractères phonétiques fournis.

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 des mots à retourner.

Retours

Opération asynchrone pour renvoyer un IVectorView de la liste des mots candidats.

Attributs

Voir aussi

S’applique à

GetCandidatesAsync(String, UInt32)

Obtient de façon asynchrone une liste de mots candidats, jusqu’à un nombre maximal, en fonction des caractères phonétiques fournis.

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 des mots à retourner.

maxCandidates
UInt32

unsigned int

uint32_t

Nombre maximal de mots candidats à retourner.

Retours

Opération asynchrone pour renvoyer un IVectorView de la liste des mots candidats.

Attributs

Voir aussi

S’applique à