Achei o BO!
O Erro acima estava dando porque eu havia criado somente um evento do tipo Action,
Para corrigir crie um Delegate associado ao evento:
No UserControl:
public delegate void btnConfirmarEventHandler(object sender, System.EventArgs e);
public event btnConfirmarEventHandler btnConfirmar;
protected void _btnConfirmar_Click(object sender, EventArgs e)
{
if (btnConfirmar != null)
btnConfirmar(sender, e);
}
Na Page que consome:
this.UCMotivosCancelemento1.btnConfirmar += UCMotivosCancelemento1_confirmar;
protected void UCMotivosCancelemento1_confirmar(object sender, EventArgs e)
{
_excluir(UCMotivosCancelemento1);
}
Estou documentando caso alguém precise..
att,