Skip to content

Commit 37771a5

Browse files
committed
fix Web API example too
1 parent 62274dc commit 37771a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

powerapps-docs/developer/data-platform/fetchxml/page-results.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ static async Task<List<JsonObject>> RetrieveAll(HttpClient client,
514514
fetchNode.SetAttributeValue("paging-cookie", pagingCookie);
515515

516516
// Increment the fetch page attribute value
517-
fetchNode.SetAttributeValue("page", page++);
517+
fetchNode.SetAttributeValue("page", ++page);
518518
}
519519

520520
// Return the records from all requests

0 commit comments

Comments
 (0)