Programmatically create a task item and assign to a SharePoint group


In this blog you will see how to create a task item and assign the task to a SharePoint group using SharePoint object model.


 

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using Microsoft.SharePoint;

 

namespace Console

{

    class Program

    {

        static void Main(string[] args)

        {

            using (SPSite site = new SPSite(https://serverName.com/sites/TEST))

            {

                using (SPWeb web = site.OpenWeb())

                {

                    SPList list = web.Lists.TryGetList("Tasks");

                    if (list != null)

                    {

                        // get the SharePoint group

                        SPGroup group = web.Groups["Training Co-ordinator"];

 

                        // Create a new task item

                        SPListItem task = list.Items.Add();

                        SPFieldUserValue assignToGroup = new SPFieldUserValue(web, group.ID, group.Name);

                        task["AssignedTo"] = assignToGroup;

                        task["Title"] = "Testing";

                        task["Description"] = "Testing";                      

                        task.Update();

                    }

                }

            }

        }

    }

}