예제 #1
0
		private void OnInvocationCompleted(string id, string responseJsml)
		{
			var args = new AsyncInvocationCompletedEventArgs(id, responseJsml);
			EventsHelper.Fire(_asyncInvocationCompleted, this, args);
		}
예제 #2
0
 private void AsyncInvocationCompletedEventHandler(object sender, AsyncInvocationCompletedEventArgs e)
 {
     // forward the event on to the view layer
     EventsHelper.Fire(_asyncInvocationCompleted, sender, e);
 }
예제 #3
0
        private void OnInvocationCompleted(string id, string responseJsml)
        {
            var args = new AsyncInvocationCompletedEventArgs(id, responseJsml);

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