/// <summary> /// Raises the <see cref="RconLoginAttempt" /> event. /// </summary> /// <param name="e">An <see cref="RconLoginAttemptEventArgs" /> that contains the event data. </param> protected virtual void OnRconLoginAttempt(RconLoginAttemptEventArgs e) { if (RconLoginAttempt != null) RconLoginAttempt(this, e); }
/// <summary> /// Raises the <see cref="RconLoginAttempt" /> event. /// </summary> /// <param name="e">An <see cref="RconLoginAttemptEventArgs" /> that contains the event data. </param> protected virtual void OnRconLoginAttempt(RconLoginAttemptEventArgs e) { RconLoginAttempt?.Invoke(this, e); }