コード例 #1
0
    public async Task <IActionResult> VotePie()
    {
        // save vote
        await voteManager.CastVote("pie");

        await hubContext.Clients.All.SendAsync("updateVotes", voteManager.GetCurrentVotes());

        return(Ok());
    }
コード例 #2
0
 public Dictionary <string, int> GetCurrentVotes()
 {
     return(voteManager.GetCurrentVotes());
 }