Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
How to delete a website in Sharepoint 2013 using CSOM
WhatsApp
Gowtham Rajamanickam
9y
20.2
k
0
0
25
Blog
Steps
Open Visual Studio in your system.
Select Console Application template and give as name.
Add a Microsoft.Client Assembly reference file in right side reference tab in visual studio.
Replace Program.cs with the source code.
using
System;
using
System.Collections.Generic;
using
System.Linq;
using
System.Text;
using
System.Threading.Tasks;
using
Microsoft.SharePoint.Client;
namespace
CSOMCodeSamples
{
class
Program
{
static
void
Main(
string
[] args)
{
// ClienContext - Get the context for the SharePoint Site
ClientContext clientContext =
new
ClientContext(
"http://gauti.sharepoint.com/sites/sp/sp2/"
);
// Delete the web object
clientContext.Web.DeleteObject();
// Execute the query to the server.
clientContext.ExecuteQuery();
}
}
}
Output
Hit F5 and check the output.
Thanks for reading my blogs.
Sharepoint 2013
Website
Up Next
SharePoint 2013: Delete a List Programmatically using CSOM
Ebook Download
View all
Configure MinRole Search and Cloud Hybrid Features in SharePoint Server 2016 and Office 365
Read by 1.6k people
Download Now!
Learn
View all
Membership not found