Beispiel #1
0
        /// <summary>
        /// Invokes the VoteRequest event with the specified EventArgs.
        /// </summary>
        /// <param name="e">VoteRequestEventArgs object.</param>
        public static void InvokeVoteRequest(VoteRequestEventArgs e)
        {
            if (InternalVoteRequest != null && e != null)
            {
                InternalVoteRequest.Invoke(e);
            }

            if (VoteRequest != null && e != null)
            {
                VoteRequest.Invoke(e);
            }
        }