BuildIt.CognitiveServices.NewsSearchAPIV5Extensions.TrendingTopics C# (CSharp) Метод

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

Get trending topics identified by Bing. These are the same topics shown in the banner at the bottom of the Bing home page.
public static TrendingTopics ( this operations, string subscriptionKey = default(string), string ocpApimSubscriptionKey = default(string) ) : void
operations this /// The operations group for this extension method. ///
subscriptionKey string /// subscription key in url ///
ocpApimSubscriptionKey string /// subscription key in header ///
Результат void
            public static void TrendingTopics(this INewsSearchAPIV5 operations, string subscriptionKey = default(string), string ocpApimSubscriptionKey = default(string))
            {
                System.Threading.Tasks.Task.Factory.StartNew(s => ((INewsSearchAPIV5)s).TrendingTopicsAsync(subscriptionKey, ocpApimSubscriptionKey), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None,  System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult();
            }