void iparse_oAuthEvent(object sender, AuthEventArgs e) { if (e.message.IndexOf("Found") >= 0) { StartTransmitsAfterAuthentication(); } }
private void cmdAUTH(string[] args) { _Parsed = true; string message = UtilityService.JoinString(args, 3, args.Length); AuthEventArgs e = new AuthEventArgs(message); if (oAuthEvent != null) { oAuthEvent(this, e); } }
private void cmdAUTH(string[] args) { _Parsed = true; string message = UtilityService.JoinString(args, 3, args.Length); AuthEventArgs e = new AuthEventArgs( message); if (oAuthEvent != null) oAuthEvent(this, e); }