示例#1
0
        public bool EndVote(out string result)
        {
            if (!_votingManager.IsVoteHappening())
            {
                result = null;
                return(false);
            }

            result = _votingManager.EndVote();

            _twitchClient.SendMessage(_channel, string.Format(_locale["on_vote_completed"], result));

            return(true);
        }