Sitefinity CMS

Important Interfaces of Events Module Send comments on this topic.
See Also
Developing with Sitefinity > Modules > Modules API > Generic Content Based Modules > Events > Important Interfaces of Events Module

Glossary Item Box

The Events module creates and works with the following kinds of data:

  • Event

Event represents a content item with specific start and end dates and implements the IEvent interface. The Events module is based on the Generic Content module. 

 

Following is a description of the IEvent interfaces and its members: 

IEvent Members

All events need to implement this interface:

Member name  Member type  Comments
ID  Guid  Unique identifier (Primary key) of the event item.
EventTitle string

Event title.

Application string 

Event application.

Start DateTime

Date and time of the start of the event.

End DateTime

Date and time of the end of the event.

ContentItem IContent

IContent item object associated with the current event object.

For more information on IContent items see IContent
ContentID Guid ID of the content item associated with the current event object.
RecurringRule string Meta field to be used as a recurring rule.

 

See Also