Exemple #1
0
        public bool Compile(Cdn.CompileContext context, Cdn.CompileError error)
        {
            bool raw_ret = cdn_edge_action_compile(Handle, context == null ? IntPtr.Zero : context.Handle, error == null ? IntPtr.Zero : error.Handle);
            bool ret     = raw_ret;

            return(ret);
        }
Exemple #2
0
        public bool Compile(Cdn.CompileError error)
        {
            bool raw_ret = cdn_variable_compile(Handle, error == null ? IntPtr.Zero : error.Handle);
            bool ret     = raw_ret;

            return(ret);
        }
Exemple #3
0
 protected virtual void OnCompileError(Cdn.CompileError error)
 {
     GLib.Value      ret             = GLib.Value.Empty;
     GLib.ValueArray inst_and_params = new GLib.ValueArray(2);
     GLib.Value[]    vals            = new GLib.Value [2];
     vals [0] = new GLib.Value(this);
     inst_and_params.Append(vals [0]);
     vals [1] = new GLib.Value(error);
     inst_and_params.Append(vals [1]);
     g_signal_chain_from_overridden(inst_and_params.ArrayPtr, ref ret);
     foreach (GLib.Value v in vals)
     {
         v.Dispose();
     }
 }
Exemple #4
0
 public bool Compile(Cdn.CompileContext context, Cdn.CompileError error)
 {
     return(WrappedObject.Compile(context, error));
 }