Altairis.Fakturoid.Client.FakturoidTodosProxy.SelectAsync C# (CSharp) Method

SelectAsync() public method

Gets asynchronously paged list of current todos
page;Page must be greater than zero.
public SelectAsync ( int page, System.DateTime since = null ) : Task>
page int The page number.
since System.DateTime The date since when todos are to be selected.
return Task>
        public async Task< IEnumerable<JsonTodo>> SelectAsync(int page, DateTime? since = null) {
            if (page < 1) throw new ArgumentOutOfRangeException(nameof(page), "Page must be greater than zero.");

            return await base.GetPagedEntitiesAsync<JsonTodo>("todos.json", page, new { since = since });
        }

Same methods

FakturoidTodosProxy::SelectAsync ( System.DateTime since = null ) : Task>