Scalien.scaliendb_client.SDBP_ListKeys C# (CSharp) Method

SDBP_ListKeys() public static method

public static SDBP_ListKeys ( SWIGTYPE_p_void client, ulong tableID, string startKey, string endKey, string prefix, uint count, bool forwardDirection, bool skip ) : int
client SWIGTYPE_p_void
tableID ulong
startKey string
endKey string
prefix string
count uint
forwardDirection bool
skip bool
return int
        public static unsafe int SDBP_ListKeys(SWIGTYPE_p_void client, ulong tableID, string startKey, string endKey, string prefix, uint count, bool forwardDirection, bool skip)
        {
            int ret = scaliendb_clientPINVOKE.SDBP_ListKeys(SWIGTYPE_p_void.getCPtr(client), tableID, startKey, endKey, prefix, count, forwardDirection, skip);
            if (scaliendb_clientPINVOKE.SWIGPendingException.Pending) throw scaliendb_clientPINVOKE.SWIGPendingException.Retrieve();
            return ret;
        }
scaliendb_client