Showing posts with label sharepoint framework delete list using pnp. Show all posts
Showing posts with label sharepoint framework delete list using pnp. Show all posts

Sunday, 17 March 2019

Delete SPList using pnp



private DeleteSPList():void
{
pnp.sp.web.lists.getByTitle("Employee").delete().then(function(response)
{
console.log("SharePoint List Deleted");
}).catch(function(exception)
{
alert("Something went wrong :"+exception);
});
}