Hi @Yuvraj Patil ,
Your caml query is incorrect, I have tested following code and it works. Please make a reference.
ListItemCollection listItemCollection;
var list = web.Lists.GetByTitle("User Information List");
ctx.ExecuteQuery();
// Load the items and folders.
CamlQuery camlQuery = new CamlQuery();
camlQuery.ViewXml = "<View Scope=\'RecursiveAll\'><Query></Query></View>";
listItemCollection = list.GetItems(camlQuery);
ctx.Load(listItemCollection);
ctx.ExecuteQuery();
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.