C# Corner
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
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Create a new list in the SharePoint using CSOM
WhatsApp
Gowtham Rajamanickam
10y
61.5
k
0
0
25
Blog
Steps
Open Visual Studio in your system
Select Console Applciation template and give as name "CreateList"
Add a Microsoft.Cleint Assembly refrence file in right side refrence tab in visual studio.
Replace Program.cs with the source code below.
using
System.Collections.Generic;
using
System.Linq;
using
System.Text;
using
System.Threading.Tasks;
using
Microsoft.SharePoint.Client;
namespace
CreateList
{
class
Program
{
static
void
Main(
string
[] args)
{
// ClientContext - Get the context for the SharePoint Site
ClientContext clientContext =
new
ClientContext(
"http://gauti.sharepoint.com/sites/SP/"
);
// Specifies the properties of the new custom list
ListCreationInformation creationInfo =
new
ListCreationInformation();
creationInfo.Title =
"NewList"
;
creationInfo.Description =
"new list created using VS 2012 &CSOM"
;
creationInfo.TemplateType = (
int
) ListTemplateType.GenericList;
// Create a new custom list
List newList = clientContext.Web.Lists.Add(creationInfo);
// Retrieve the custom list properties
clientContext.Load(newList);
// Execute the query to the server.
clientContext.ExecuteQuery();
// Display the custom list Title property
Console.WriteLine(newList.Title);
Console.ReadLine();
}
}
}
Output
Hit F5 and see the magix happend in SharePoint 2013. Hope you have enjoyed this.!!! :-)
Create a new list in the SharePoint using CSOM
Recommended related topics
Membership not found