Xapian.PostingIterator.getCPtr C# (CSharp) Method

getCPtr() static private method

static private getCPtr ( PostingIterator obj ) : HandleRef
obj PostingIterator
return System.Runtime.InteropServices.HandleRef
        internal static HandleRef getCPtr(PostingIterator obj)
        {
            return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr;
        }

Usage Example

Exemplo n.º 1
0
        public bool Equals(PostingIterator other)
        {
            bool ret = XapianPINVOKE.PostingIterator_Equals(swigCPtr, PostingIterator.getCPtr(other));

            if (XapianPINVOKE.SWIGPendingException.Pending)
            {
                throw XapianPINVOKE.SWIGPendingException.Retrieve();
            }
            return(ret);
        }
All Usage Examples Of Xapian.PostingIterator::getCPtr