How to get specified page of svn log using SvnClient class in SvnSharp; For example i have secuence of commits with revisions [407, 402, 374, 373, 372, 371, 370, 369, 368, 367, 366, 365, 364] I need to get secound page and page size 5, how to do that?
var logList = new Collection<SvnLogEventArgs>();
var args = new SvnLogArgs();
args.Limit = 10;
svnClient.GetLog(new Uri(path), args, out logList);
Limit method is limit only first items without paging.
Items should be extracted based on page and pagesize parameters. How to do that?