Skip to content

Instantly share code, notes, and snippets.

# Powershell (administrator)
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
public class InfosPublisher : Hub
{
public Task PublishInfo(MessageInfo message)
{
return Clients.All.SendAsync("OnInfoPublished", message);
}
}
public class MessageInfo
{