BuildIt.CognitiveServices.AzureMachineLearningTextAnalyticsExtensions.KeyPhrasesAsync C# (CSharp) Méthode

KeyPhrasesAsync() public static méthode

The API returns a list of strings denoting the key talking points in the input text. We employ techniques from Microsoft Office's sophisticated Natural Language Processing toolkit. Currently, the following languages are supported: English, German, Spanish and Japanese.
public static KeyPhrasesAsync ( this operations, string subscriptionKey = default(string), string ocpApimSubscriptionKey = default(string), MultiLanguageBatchInputV2 multiLanguageBatchInputV2 = default(MultiLanguageBatchInputV2), System cancellationToken = default(System.Threading.CancellationToken) ) : System.Threading.Tasks.Task
operations this /// The operations group for this extension method. ///
subscriptionKey string /// subscription key in url ///
ocpApimSubscriptionKey string /// subscription key in header ///
multiLanguageBatchInputV2 MultiLanguageBatchInputV2 ///
cancellationToken System /// The cancellation token. ///
Résultat System.Threading.Tasks.Task
            public static async System.Threading.Tasks.Task<object> KeyPhrasesAsync(this IAzureMachineLearningTextAnalytics operations, string subscriptionKey = default(string), string ocpApimSubscriptionKey = default(string), MultiLanguageBatchInputV2 multiLanguageBatchInputV2 = default(MultiLanguageBatchInputV2), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken))
            {
                using (var _result = await operations.KeyPhrasesWithHttpMessagesAsync(subscriptionKey, ocpApimSubscriptionKey, multiLanguageBatchInputV2, null, cancellationToken).ConfigureAwait(false))
                {
                    return _result.Body;
                }
            }