public CollectPadsFunctionWrapper(Gst.Base.CollectPadsFunction managed)
 {
     this.managed = managed;
     if (managed != null)
     {
         NativeDelegate = new CollectPadsFunctionNative(NativeCallback);
     }
 }
        public static Gst.Base.CollectPadsFunction GetManagedDelegate(CollectPadsFunctionNative native)
        {
            if (native == null)
            {
                return(null);
            }
            CollectPadsFunctionWrapper wrapper = (CollectPadsFunctionWrapper)native.Target;

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