Freigeben über


TextPredictionGenerator.GetCandidatesAsync Methode

Definition

Überlädt

GetCandidatesAsync(String)

Ruft asynchron eine Liste von Kandidatenwörtern ab, die auf dem angegebenen phonetischen Zeichenpräfix basieren.

GetCandidatesAsync(String, UInt32)

Ruft asynchron eine Liste von Kandidatenwörtern ab, bis zu einer maximalen Anzahl, basierend auf dem bereitgestellten phonetischen Zeichenpräfix.

GetCandidatesAsync(String, UInt32, TextPredictionOptions, IIterable<String>)

Ruft asynchron eine Liste von Kandidatenwörtern ab, bis zu einer maximalen Anzahl, basierend auf dem bereitgestellten phonetischen Zeichenpräfix und den Optionen.

GetCandidatesAsync(String)

Ruft asynchron eine Liste von Kandidatenwörtern ab, die auf dem angegebenen phonetischen Zeichenpräfix basieren.

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))

Parameter

input
String

Platform::String

winrt::hstring

Die anfangs phonetischen Zeichen der zurückzugebenden Wörter.

Gibt zurück

Ein asynchrones Vorgangsobjekt, das nach Abschluss eine IVectorView von Zeichenfolgen enthält, bei denen es sich um die vorhergesagten Wörter handelt.

Attribute

Weitere Informationen

Gilt für:

GetCandidatesAsync(String, UInt32)

Ruft asynchron eine Liste von Kandidatenwörtern ab, bis zu einer maximalen Anzahl, basierend auf dem bereitgestellten phonetischen Zeichenpräfix.

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))

Parameter

input
String

Platform::String

winrt::hstring

Die anfangs phonetischen Zeichen der zurückzugebenden Wörter.

maxCandidates
UInt32

unsigned int

uint32_t

Die maximale Anzahl der zurückzugebenden vorhergesagten Wörter.

Gibt zurück

Ein asynchrones Vorgangsobjekt, das nach Abschluss eine IVectorView von Zeichenfolgen enthält, bei denen es sich um die vorhergesagten Wörter handelt.

Attribute

Weitere Informationen

Gilt für:

GetCandidatesAsync(String, UInt32, TextPredictionOptions, IIterable<String>)

Ruft asynchron eine Liste von Kandidatenwörtern ab, bis zu einer maximalen Anzahl, basierend auf dem bereitgestellten phonetischen Zeichenpräfix und den Optionen.

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))

Parameter

input
String

Platform::String

winrt::hstring

Die anfangs phonetischen Zeichen der zurückzugebenden Wörter.

maxCandidates
UInt32

unsigned int

uint32_t

Die maximale Anzahl der zurückzugebenden vorhergesagten Wörter.

predictionOptions
TextPredictionOptions

Ein TextPredictionOptions-Wert , der Vorhersageoptionen enthält.

previousStrings

IIterable<String>

IEnumerable<String>

IIterable<Platform::String>

IIterable<winrt::hstring>

Eine Sammlung von Wörtern, die zuvor eingegeben wurden (zur Unterstützung der Textvorhersage).

Gibt zurück

Ein asynchrones Vorgangsobjekt, das nach Abschluss eine IVectorView von Zeichenfolgen enthält, bei denen es sich um die vorhergesagten Wörter handelt.

Attribute

Windows-Anforderungen

Gerätefamilie
Windows 10, version 1809 (eingeführt in 10.0.17763.0)
API contract
Windows.Foundation.UniversalApiContract (eingeführt in v7.0)

Gilt für: