public TriggerActionFunctionWrapper(Gnome.TriggerActionFunction managed) { this.managed = managed; if (managed != null) { NativeDelegate = new TriggerActionFunctionNative(NativeCallback); } }
public static Gnome.TriggerActionFunction GetManagedDelegate(TriggerActionFunctionNative native) { if (native == null) { return(null); } TriggerActionFunctionWrapper wrapper = (TriggerActionFunctionWrapper)native.Target; if (wrapper == null) { return(null); } return(wrapper.managed); }
internal TriggerActionFunctionInvoker(TriggerActionFunctionNative native_cb, IntPtr data) : this(native_cb, data, null) { }
internal TriggerActionFunctionInvoker(TriggerActionFunctionNative native_cb, IntPtr data, GLib.DestroyNotify notify) { this.native_cb = native_cb; __data = data; __notify = notify; }
internal TriggerActionFunctionInvoker(TriggerActionFunctionNative native_cb) : this(native_cb, IntPtr.Zero, null) { }