public AsyncCreateCallbackWrapper(Gnome.Vfs.AsyncCreateCallback managed)
 {
     this.managed = managed;
     if (managed != null)
     {
         NativeDelegate = new AsyncCreateCallbackNative(NativeCallback);
     }
 }
        public static Gnome.Vfs.AsyncCreateCallback GetManagedDelegate(AsyncCreateCallbackNative native)
        {
            if (native == null)
            {
                return(null);
            }
            AsyncCreateCallbackWrapper wrapper = (AsyncCreateCallbackWrapper)native.Target;

            if (wrapper == null)
            {
                return(null);
            }
            return(wrapper.managed);
        }
 internal AsyncCreateCallbackInvoker(AsyncCreateCallbackNative native_cb, IntPtr data) : this(native_cb, data, null)
 {
 }
 internal AsyncCreateCallbackInvoker(AsyncCreateCallbackNative native_cb, IntPtr data, GLib.DestroyNotify notify)
 {
     this.native_cb = native_cb;
     __data         = data;
     __notify       = notify;
 }
 internal AsyncCreateCallbackInvoker(AsyncCreateCallbackNative native_cb) : this(native_cb, IntPtr.Zero, null)
 {
 }