Below code describes how to retrieve items from sharepoint list by specific view using client side object model Add reference “Microsoft.sharepoint.client.dll” and “Microsoft.sharepoint.client.Runtime.dll”. Write Below Code. using Microsoft.SharePoint.Client; namespace ConsoleApplication { class Program { static void main(string[] args) { using (ClientContext ctx=new ClientContext(“http://siteurl”)) { //Apply Credential ctx.Credentials […]