Beispiel #1
0
 static void cancelled_cb(IntPtr cancellable)
 {
     try {
         Cancellable cancellable_managed = GLib.Object.GetObject(cancellable, false) as Cancellable;
         cancellable_managed.OnCancelled();
     } catch (Exception e) {
         GLib.ExceptionManager.RaiseUnhandledException(e, false);
     }
 }
Beispiel #2
0
 static void Cancelled_cb(IntPtr inst)
 {
     try {
         Cancellable __obj = GLib.Object.GetObject(inst, false) as Cancellable;
         __obj.OnCancelled();
     } catch (Exception e) {
         GLib.ExceptionManager.RaiseUnhandledException(e, false);
     }
 }