SignalR in ASP.NET Core Projects (1/3)- Full Course from Wilder Minds

Поділитися
Вставка
  • Опубліковано 27 лют 2021
  • We're making our courses free on UA-cam. Enjoy this course and visit wilderminds.com if you're interested in training!
    You can view the entire course as a playlist here:
    • SignalR Course
    Or each of the modules are listed here:
    - Module 01: • SignalR in ASP.NET Cor...
    - Module 02: • SignalR in ASP.NET Cor...
    - Module 03: • SignalR in ASP.NET Cor...
    You can get the source code at:
    - github.com/WilderMindsCourses...
    - github.com/WilderMindsCourses...
    - github.com/WilderMindsCourses...
  • Наука та технологія

КОМЕНТАРІ • 26

  • @jorgeallisalmenjunior3877
    @jorgeallisalmenjunior3877 2 роки тому +1

    You're amazing, great course my friend.
    Don't watched nothing like this explanation.
    Thanks for sharing :)

  • @vandaahl1400
    @vandaahl1400 Рік тому +1

    Clear as day. Very informative, thank you very much!

  • @louisheilman4835
    @louisheilman4835 3 роки тому +3

    Thanks for the great course, fantastic introduction to a very powerful tool!

  • @krish452002
    @krish452002 2 роки тому +1

    So far "The best course" I can found in youTube..thanks

  • @jmfernandes8
    @jmfernandes8 Рік тому

    Great video!

  • @javierpriego6526
    @javierpriego6526 2 роки тому +1

    Great course and explanation!! Thanks for sharing :)

  • @mauiapp8244
    @mauiapp8244 Рік тому +1

    you provide extraordinary and free knowledge, I hope your family is always given health

  • @rowllenscunanan3096
    @rowllenscunanan3096 2 роки тому

    well explained. Thanks

  • @henrik3098
    @henrik3098 Рік тому +1

    thanks man

  • @envoy1304
    @envoy1304 2 роки тому

    Thanx a lot

  • @juanalbertoboada
    @juanalbertoboada Рік тому

    Amazing video

  • @k3davis
    @k3davis 2 роки тому +1

    This is a helpful video and I thank you for making it available for free on YT.
    I don't expect you to provide individualized support but perhaps someone else can help clarify. I see the hub method "NewCall" is invoked both in the home controller 13:54 and in the hub itself 11:30, seemingly to different audiences ("All" and "Others"). I'm not understanding this distinction. In my case I just want my application to send notifications to targeted clients, not invoke any C# methods from the client, so I've made a hub method but don't seem to "use" it since the controller can send the message as you're doing. Is the hub method a kind of "pass thru" or is there some distinction of use I am missing?

    • @swildermuth
      @swildermuth  2 роки тому

      By using the Hub, you're sending a message down to the clients who have registered with those groups. These are not the caller of the API. This is multicasting to all other interested parties.

  • @samgupta5643
    @samgupta5643 Рік тому

    I'm getting this error when i try to hit save button >Threw exception trying to save call.

  • @prashantkori8245
    @prashantkori8245 2 місяці тому

    Have you set websocket config already or it comes with when we install SignalR

    • @swildermuth
      @swildermuth  2 місяці тому

      SignalR uses websockets, but you don't have to think about the websockets at all. Should just work.

  • @legionsman7476
    @legionsman7476 Рік тому

    Can someone please explain why some of these projects have a startup.cs file and others just have the programs.cs file?

    • @swildermuth
      @swildermuth  Рік тому

      Yes, as of .NET 5 they've moved to a simpler model (once top-level statements) so that the startup isn't necessary, it's in the program.cs now.

  • @Dawid-sk9gl
    @Dawid-sk9gl 11 місяців тому

    Its possible to storage messages in db with signalr?

    • @swildermuth
      @swildermuth  11 місяців тому

      It is, where you get the messages is up to you.