コード例 #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);
        }
コード例 #2
0
ファイル: JsmlServiceProxy.cs プロジェクト: nhannd/Xian
		private void OnInvocationError(string id, Exception error)
		{
			var args = new AsyncInvocationErrorEventArgs(id, error);
			EventsHelper.Fire(_asyncInvocationError, this, args);
		}
コード例 #3
0
ファイル: JsmlServiceProxy.cs プロジェクト: hksonngan/Xian
        private void OnInvocationError(string id, Exception error)
        {
            var args = new AsyncInvocationErrorEventArgs(id, error);

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