public ForeachFunctionFuncWrapper(Cdn.ForeachFunctionFunc managed)
 {
     this.managed = managed;
     if (managed != null)
     {
         NativeDelegate = new ForeachFunctionFuncNative(NativeCallback);
     }
 }
Exemple #2
0
 public void ForeachFunction(Cdn.ForeachFunctionFunc func)
 {
     CdnSharp.ForeachFunctionFuncWrapper func_wrapper = new CdnSharp.ForeachFunctionFuncWrapper(func);
     cdn_operator_foreach_function(Handle, func_wrapper.NativeDelegate, IntPtr.Zero);
 }