Get all evidence lock without pagination

Hi,

Is there any code to get Evidence lock without pagination

I need to get all evidence lock between time range

var searchResult = client.MarkedDataSearch(
                    token,
                    devicesToCreateLockOn, // use empty array to search on all devices
                    null, // Use null to not search for text
                    null, // Use null to search for all users
                    DateTime.MinValue.ToUniversalTime(), 
                    DateTime.MinValue.ToUniversalTime(),
                    DateTime.UtcNow.AddHours(-1),
                    DateTime.UtcNow.AddSeconds(-10),
                    DateTime.MinValue.ToUniversalTime(),
                    DateTime.MinValue.ToUniversalTime(),
                    DateTime.MinValue.ToUniversalTime(),
                    DateTime.MinValue.ToUniversalTime(),
                    0,
                    10000,
                    SortOrderOption.CreateTime,
                    true
                    );

I have this code. any other code is there ?

Is there any limit for number of records per page ?

To my knowledge there is no limit in the software. I would strongly suggest you never ask for unlimited data, there is limit to performance and space always, the limits might just be imposed by the physics rather than the software.

The Evidence Lock sample is listed here:

https://doc.developer.milestonesys.com/html/index.html?base=samples/componentsamples/evidencelock/readme.html&tree=tree_2.html