CBForest.Native.c4raw_get C# (CSharp) Method

c4raw_get() public static method

public static c4raw_get ( C4Database db, C4Slice storeName, C4Slice docID, C4Error outError ) : C4RawDocument*
db C4Database
storeName C4Slice
docID C4Slice
outError C4Error
return C4RawDocument*
        public static C4RawDocument* c4raw_get(C4Database *db, C4Slice storeName, C4Slice docID, C4Error *outError)
        {
            #if DEBUG
            var retVal = _c4raw_get(db, storeName, docID, outError);
            if(retVal != null) {
                _AllocatedObjects[(IntPtr)retVal] = "C4RawDocument";
                #if ENABLE_LOGGING
                Console.WriteLine("[c4raw_get] Allocated 0x{0}", ((IntPtr)retVal).ToString("X"));
                #endif
            }

            return retVal;
            #else
            return _c4raw_get(db, storeName, docID, outError);
            #endif
        }

Same methods

Native::c4raw_get ( C4Database db, string storeName, string docID, C4Error outError ) : C4RawDocument*
Native