Sitefinity CMS

Implementing IRssViewControl Send comments on this topic.
Developing with Sitefinity > Services > RSS Service > Implementing IRssViewControl

Glossary Item Box

The RssViewControl visualizes the settings of the Rss feed which have already been saved in the database. They are displayed in the Administration part of Sitefinity.

 

The red rectangles in the following screenshot in Figure 1 show the Rss View Control:

Rss ViewControl

Figure 1 

 

In order to implement that functionality, we will create a new class - RssViewControl - and place it in the WebControls.Rss folder of the project. We will use this control in the module Blogs. RssViewControl will implement the IRssViewControl interface, and also inherit the CompositeControl class (the basic functionality required by Web controls that contain child controls). 

 

 Inherited Members

The following method implements the IRssViewControl interface in the RssViewControl class:

 

The method public void InitializeSettings(IDictionary<string,string> settings) initializes the settings:  

InitializeSettings() Copy Code
public void InitializeSettings(IDictionary<string, string> settings)
{
 
this.settings = settings;
}