CBForest.Native.c4indexer_enumerateDocuments C# (CSharp) Method

c4indexer_enumerateDocuments() public static method

public static c4indexer_enumerateDocuments ( C4Indexer indexer, C4Error outError ) : C4DocEnumerator*
indexer C4Indexer
outError C4Error
return C4DocEnumerator*
        public static C4DocEnumerator *c4indexer_enumerateDocuments(C4Indexer *indexer, C4Error *outError)
        {
            #if DEBUG
            var retVal = _c4indexer_enumerateDocuments(indexer, outError);
            if(retVal != null) {
                _AllocatedObjects[(IntPtr)retVal] = "C4DocEnumerator";
                #if ENABLE_LOGGING
                Console.WriteLine("[c4indexer_enumerateDocuments] Allocated 0x{0}", ((IntPtr)retVal).ToString("X"));
                #endif
            }

            return retVal;
            #else
            return _c4indexer_enumerateDocuments(indexer, outError);
            #endif
        }
Native