BuildIt.CognitiveServices.SpellCheckAPIV5Extensions.SpellCheckAsync C# (CSharp) Метод

SpellCheckAsync() публичный статический Метод

public static SpellCheckAsync ( this operations, string mode = default(string), string mkt = default(string), string subscriptionKey = default(string), string ocpApimSubscriptionKey = default(string), System cancellationToken = default(System.Threading.CancellationToken) ) : System.Threading.Tasks.Task
operations this /// The operations group for this extension method. ///
mode string /// Mode of spellcheck: /// <ul><li>Proof - Meant to provide Office Word like spelling /// corrections. It can correct long queries, provide casing corrections and /// suppresses aggressive corrections.</li> /// <li>Spell - Meant to provide Search engine like spelling /// corrections. It will correct small queries(up to length 9 tokens) without /// any casing changes and will be more optimized (perf and relevance) /// towards search like queries.</li></ul> /// . Possible values include: 'spell', 'proof' ///
mkt string /// For proof mode, only support en-us, es-es, pt-br, /// For spell mode, support all language codes. Possible values include: /// 'en-us', 'es-es', 'pt-br' ///
subscriptionKey string /// subscription key in url ///
ocpApimSubscriptionKey string /// subscription key in header ///
cancellationToken System /// The cancellation token. ///
Результат System.Threading.Tasks.Task
            public static async System.Threading.Tasks.Task SpellCheckAsync(this ISpellCheckAPIV5 operations, string mode = default(string), string mkt = default(string), string subscriptionKey = default(string), string ocpApimSubscriptionKey = default(string), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken))
            {
                await operations.SpellCheckWithHttpMessagesAsync(mode, mkt, subscriptionKey, ocpApimSubscriptionKey, null, cancellationToken).ConfigureAwait(false);
            }

Same methods

SpellCheckAPIV5Extensions::SpellCheckAsync ( this operations, string mode = default(string), string preContextText = default(string), string postContextText = default(string), string mkt = default(string), string subscriptionKey = default(string), string ocpApimSubscriptionKey = default(string), System cancellationToken = default(System.Threading.CancellationToken) ) : System.Threading.Tasks.Task
SpellCheckAPIV5Extensions