public MemoryIsSpanFunctionWrapper(Gst.MemoryIsSpanFunction managed)
 {
     this.managed = managed;
     if (managed != null)
     {
         NativeDelegate = new MemoryIsSpanFunctionNative(NativeCallback);
     }
 }
        public static Gst.MemoryIsSpanFunction GetManagedDelegate(MemoryIsSpanFunctionNative native)
        {
            if (native == null)
            {
                return(null);
            }
            MemoryIsSpanFunctionWrapper wrapper = (MemoryIsSpanFunctionWrapper)native.Target;

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