Share via


ScheduledItem.Schedule Method

Schedules an instance of the SPListItem class to be automatically approved (start) and to be unpublished (end) on specified dates.

Namespace:  Microsoft.SharePoint.Publishing
Assembly:  Microsoft.SharePoint.Publishing (in Microsoft.SharePoint.Publishing.dll)

Syntax

'Declaration
Public Sub Schedule
'Usage
Dim instance As ScheduledItem

instance.Schedule()
public void Schedule()

Exceptions

Exception Condition
[Microsoft.SharePoint.SPException]

You can schedule documents only in a minor version-enabled list.

[Microsoft.SharePoint.SPException]

You can schedule documents only in a list that has content approval enabled.

[Microsoft.SharePoint.SPException]

The current user does not have sufficient permissions to perform this action.

[Microsoft.SharePoint.SPException]

Scheduling a start date for a currently approved item is not supported. Items must be in the minor/draft state.

[Microsoft.SharePoint.SPException]

Scheduling is not supported in this content database. Use Approve or Unpublish instead.

Remarks

Scheduling an SPListItem indicates that it has already been approved. The same permissions are required for scheduling and approval.

The StartDate and EndDate property values are used to determine the publication schedule. If the start date is earlier than the current date, the SPListItem is published immediately. If not, it is scheduled to publish at a future date. If the end date is specified, the SPListItem is scheduled to unpublish at a future date.

Examples

This sample sets a start and end date for a ScheduledItem object and schedules the item so that it is published when the start date is reached and it is unpublished when the end date is reached.

Before compiling and running this sample, verify that the SPListItem is a list item in a document library that supports scheduling.

[c#]

using ScheduledItem = Microsoft.SharePoint.Publishing.ScheduledItem;
using SPModerationStatusType = Microsoft.SharePoint.SPModerationStatusType;
using SPListItem = Microsoft.SharePoint.SPListItem;
using DateTime = System.DateTime;

namespace Microsoft.SDK.SharePointServer.Samples
{
    public static class ScheduledItemCodeSamples
    {
        public static void SetDatesAndSchedule(SPListItem listItem, 
          DateTime startDate, DateTime endDate)
        {
            // TODO: Set the input parameter values with
            // your own values.
            
            //
            // validate the input parameters
            if (null == listItem)
            {
                throw new System.ArgumentNullException("listItem");
            }

            // Get the ScheduledItem wrapper for the SPListItem
            // that was passed in.
            //
            ScheduledItem scheduledItem = null;
            if (ScheduledItem.IsScheduledItem(listItem))
            {
                scheduledItem = ScheduledItem.GetScheduledItem(listItem);
            }
            else
            {
                throw new System.ArgumentException
                  ("The document library containing this SPListItem must support scheduling", 
                  "listItem");
            }

            // Set and save the date values.
            scheduledItem.StartDate = startDate;
            scheduledItem.EndDate = endDate;
            scheduledItem.ListItem.Update();

            // Schedule the item so that the StartDate and EndDate
            // take effect.
            scheduledItem.Schedule();
        }        
    }
}

See Also

Reference

ScheduledItem Class

ScheduledItem Members

Schedule Overload

Microsoft.SharePoint.Publishing Namespace

StartDate

EndDate

Approve

Schedule