public TypeFindFunctionWrapper(Gst.TypeFindFunction managed)
 {
     this.managed = managed;
     if (managed != null)
     {
         NativeDelegate = new TypeFindFunctionNative(NativeCallback);
     }
 }
		public static Gst.TypeFindFunction GetManagedDelegate (TypeFindFunctionNative native)
		{
			if (native == null)
				return null;
			TypeFindFunctionWrapper wrapper = (TypeFindFunctionWrapper) native.Target;
			if (wrapper == null)
				return null;
			return wrapper.managed;
		}
        public static Gst.TypeFindFunction GetManagedDelegate(TypeFindFunctionNative native)
        {
            if (native == null)
            {
                return(null);
            }
            TypeFindFunctionWrapper wrapper = (TypeFindFunctionWrapper)native.Target;

            if (wrapper == null)
            {
                return(null);
            }
            return(wrapper.managed);
        }
		public TypeFindFunctionWrapper (Gst.TypeFindFunction managed)
		{
			this.managed = managed;
			if (managed != null)
				NativeDelegate = new TypeFindFunctionNative (NativeCallback);
		}
		internal TypeFindFunctionInvoker (TypeFindFunctionNative native_cb, IntPtr data, Gst.GLib.DestroyNotify notify)
		{
			this.native_cb = native_cb;
			__data = data;
			__notify = notify;
		}
		internal TypeFindFunctionInvoker (TypeFindFunctionNative native_cb, IntPtr data) : this (native_cb, data, null) {}
		internal TypeFindFunctionInvoker (TypeFindFunctionNative native_cb) : this (native_cb, IntPtr.Zero, null) {}
 internal TypeFindFunctionInvoker(TypeFindFunctionNative native_cb, IntPtr data, GLib.DestroyNotify notify)
 {
     this.native_cb = native_cb;
     __data         = data;
     __notify       = notify;
 }
 internal TypeFindFunctionInvoker(TypeFindFunctionNative native_cb, IntPtr data) : this(native_cb, data, null)
 {
 }
 internal TypeFindFunctionInvoker(TypeFindFunctionNative native_cb) : this(native_cb, IntPtr.Zero, null)
 {
 }