예제 #1
0
파일: Program.cs 프로젝트: sycomix/Canaan
 static async Task RetrieveNewsTopic(string topic, int articleCount)
 {
     BingNewsAzure pipeline = new BingNewsAzure(topic);
     await pipeline.AnalyzeArticleImages(new List <Article>());
 }
예제 #2
0
파일: Program.cs 프로젝트: sycomix/Canaan
 static async Task AddNewsTopic(string topic, int articleCount)
 {
     BingNewsAzure pipeline = new BingNewsAzure(topic);
     await pipeline.InsertArticlesForTopic(topic, 2019, articleCount);
 }