Ejemplo n.º 1
0
        public void AsyncInvocationErrorEventHandler(object sender, AsyncInvocationErrorEventArgs e)
        {
            Platform.Log(LogLevel.Error, e);

            // forward the event on to the view layer
            EventsHelper.Fire(_asyncInvocationError, sender, e);
        }
Ejemplo n.º 2
0
		private void OnInvocationError(string id, Exception error)
		{
			var args = new AsyncInvocationErrorEventArgs(id, error);
			EventsHelper.Fire(_asyncInvocationError, this, args);
		}
Ejemplo n.º 3
0
        private void OnInvocationError(string id, Exception error)
        {
            var args = new AsyncInvocationErrorEventArgs(id, error);

            EventsHelper.Fire(_asyncInvocationError, this, args);
        }