protected virtual void OnSucessoSync(RetornoEEnvio e) { if (SucessoSync == null) { return; } SucessoSync.Invoke(this, e); }
private void Sucesso(object sender, RetornoEEnvio e) { Application.Current.Dispatcher.Invoke(new Action(() => { XmlTemp(e.Envio, "envio-tmp.xml"); XmlTemp(e.Retorno, "retorno-tmp.xml"); WebXmlEnvio.Navigate(_path + @"\envio-tmp.xml"); WebXmlRetorno.Navigate(_path + @"\retorno-tmp.xml"); })); }