internal void sapApp_ServerInvokeCompletedEvent(ref B1iEvent b1iEventArgs, out bool BubbleEvent)
 {
     BubbleEvent = true;
     foreach (var e in serverInvokeEvents)
     {
         ((_IApplicationEvents_ServerInvokeCompletedEventEventHandler)e)(ref b1iEventArgs, out BubbleEvent);
         if (!BubbleEvent)
         {
             break;
         }
     }
 }
Beispiel #2
0
 public void SBO_Application_ServerInvokeCompletedEvent(ref B1iEvent B1iEvent, SAPbobsCOM.Company sbo_company, ref Application sbo_application, out bool bBubbleEvent)
 {
     bBubbleEvent = true;
 }
Beispiel #3
0
 internal void sapApp_ServerInvokeCompletedEvent(ref B1iEvent b1iEventArgs, out bool BubbleEvent)
 {
     BubbleEvent = true;
     foreach (var e in serverInvokeEvents)
     {
         ((_IApplicationEvents_ServerInvokeCompletedEventEventHandler)e)(ref b1iEventArgs, out BubbleEvent);
         if (!BubbleEvent)
             break;
     }
 }