0
votes

I'm working with a Sharepoint site, I'm accessing this site using Web Services,

var client = new SiteWebReference.Lists();
        System.Net.NetworkCredential passCredentials = new System.Net.NetworkCredential("username", "password", "domain");
        client.Credentials = passCredentials;

This allows me to pull out lists from the site, I'm now trying to also add a new list to the SharePoint site but can't figure out how.

1

1 Answers

0
votes

The generated Lists object has an AddList method. Call it to add a list.