Example #1
0
        public CTRunDelegate(CTRunDelegateOperations operations)
        {
            if (operations == null)
                throw ConstructorError.ArgumentNull (this, "operations");

            handle = CTRunDelegateCreate (operations.GetCallbacks (), GCHandle.ToIntPtr (operations.handle));
            if (handle == IntPtr.Zero)
                throw ConstructorError.Unknown (this);
        }
Example #2
0
        public CTRunDelegate(CTRunDelegateOperations operations)
        {
            if (operations == null)
            {
                throw ConstructorError.ArgumentNull(this, "operations");
            }

            handle = CTRunDelegateCreate(operations.GetCallbacks(), GCHandle.ToIntPtr(operations.handle));
            if (handle == IntPtr.Zero)
            {
                throw ConstructorError.Unknown(this);
            }
        }