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