Ejemplo n.º 1
0
        /// <summary>
        /// Raises the <see cref="VersionResponseReceived"/> event.
        /// </summary>
        /// <param name="e">The <see cref="CtcpVersionResponseReceivedEventArgs"/> instance containing the event data.
        /// </param>
        protected virtual void OnVersionResponseReceived(CtcpVersionResponseReceivedEventArgs e)
        {
            var handler = this.VersionResponseReceived;

            if (handler != null)
            {
                handler(this, e);
            }
        }
Ejemplo n.º 2
0
 /// <summary>
 /// Raises the <see cref="VersionResponseReceived"/> event.
 /// </summary>
 /// <param name="e">The <see cref="CtcpVersionResponseReceivedEventArgs"/> instance containing the event data.
 /// </param>
 protected virtual void OnVersionResponseReceived(CtcpVersionResponseReceivedEventArgs e)
 {
     var handler = this.VersionResponseReceived;
     if (handler != null)
         handler(this, e);
 }