News
This section provides you with an overview of the News Module API in Sitefinity and guides you through the common tasks when working with news items.
The News module allows users to create and manage news items.
Sitefinity back-end provides you with a user-friendly interface to create news item. You can also create news items programmatically using the Native or Fluent APIs.
The section contains the following:
To manage news items through the Native API, you must add the following namespaces to your class:
using Telerik.Sitefinity.GenericContent.Model;
using Telerik.Sitefinity.Modules.News;
using Telerik.Sitefinity.News.Model;
using Telerik.Sitefinity.Workflow;
To manage news items through the Fluent API, you must add the following namespaces to your class:
using Telerik.Sitefinity;
using Telerik.Sitefinity.News.Model;
using Telerik.Sitefinity.GenericContent.Model;
using Telerik.Sitefinity.Workflow;
See Also