Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Created January 31, 2019 01:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dcomartin/a12f75a6a1d3e3f3be30525cad712284 to your computer and use it in GitHub Desktop.
Save dcomartin/a12f75a6a1d3e3f3be30525cad712284 to your computer and use it in GitHub Desktop.
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.SignalR;
namespace Practical.AspNetCore.SignalR
{
public class AnnouncementController : Controller
{
private IHubContext<MessageHub> _hubContext;
public AnnouncementController(IHubContext<MessageHub> hubContext)
{
_hubContext = hubContext;
}
[HttpGet("/announcement")]
public IActionResult Index()
{
return View();
}
[HttpPost("/announcement")]
public async Task<IActionResult> Post([FromForm] string message)
{
await _hubContext.Clients.All.SendAsync("ReceiveMessage", message);
return RedirectToAction("Index");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment