using System;using System.Collections.Generic;using System.Linq;using System.Text;using Microsoft.SharePoint.Client; namespace COM{ class Program { static void Main(string[] args) { // siteURL is the string that contains the site URL string siteUrl = "http://serverName:50000/sites/Testing"; // ClientContext object is used to get the context for the SharePoint objects ClientContext clientContext = new ClientContext(siteUrl); Web web = clientContext.Web; List list = web.Lists.GetByTitle("CustomList"); View view = list.Views.GetByTitle("Custom"); view.DeleteObject(); clientContext.ExecuteQuery(); } }}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.SharePoint.Client;
namespace COM
{
class Program
static void Main(string[] args)
// siteURL is the string that contains the site URL
string siteUrl = "http://serverName:50000/sites/Testing";
// ClientContext object is used to get the context for the SharePoint objects
ClientContext clientContext = new ClientContext(siteUrl);
Web web = clientContext.Web;
List list = web.Lists.GetByTitle("CustomList");
View view = list.Views.GetByTitle("Custom");
view.DeleteObject();
clientContext.ExecuteQuery();
}
You need to be a premium member to use this feature. To access it, you'll have to upgrade your membership.
Become a sharper developer and jumpstart your career.
$0
$
. 00
monthly
For Basic members:
$20
For Premium members:
$45
For Elite members: