Microsoft Bot Framework .NET - Dialog Fundamentals

Поделиться
HTML-код
  • Опубликовано: 1 окт 2024

Комментарии • 7

  • @johng5295
    @johng5295 2 года назад

    Thanks in a million! Very well explained. This is the nth time that I am watching this again. Great content. Awesome. Grade: A++ 💥

  • @raikaran1
    @raikaran1 5 лет назад

    Hi James,
    How Microsoft's BOT framework is better than Google's DialogFlow?

  • @ujjawalkhare2670
    @ujjawalkhare2670 7 лет назад

    Hello James, I'm new to bot and I have a scenario where I want to start a dialogue but in StartAsync method it wait for user input on context.Wait(methodName), Is there any way to skip waiting for user input ?

  • @martinchiappe
    @martinchiappe 7 лет назад

    Thanks a lot James for the whole series of videos. One comment in reference to this one: the file that is downloaded from the Github repo contains a couple of errors that make it difficult to F5

  • @cousinavi44
    @cousinavi44 7 лет назад

    in startasync metod you can delete asvync word and return Task.CompletedTask;

  • @belvss896
    @belvss896 7 лет назад

    Hello James, thanks for your videos!
    It is possible to have Multiple Dialogs?
    Like, MathDialog and CookingDialog for example?
    When I do this, no matter which dialog I start, the code goes for the same dialog without me calling it.

    • @sorinul
      @sorinul 7 лет назад

      In the MessageController Class, in the Post method, you create a dialog. If you create a CookingDialog here, it will be the default one and the Bot Application will start with it.