Represents a trackback HTTP handler section within a configuration file.

Namespace:  Argotic.Core.Configuration
Assembly:  Argotic.Core (in Argotic.Core)
Version: 2007.3.0.0 (2007.3.0.0)

Syntax

C#
public sealed class TrackbackHttpHandlerConfigurationSection : ConfigurationSection
Visual Basic (Declaration)
Public NotInheritable Class TrackbackHttpHandlerConfigurationSection _
	Inherits ConfigurationSection
Visual C++
public ref class TrackbackHttpHandlerConfigurationSection sealed : public ConfigurationSection

Remarks

The TrackbackHttpHandlerConfigurationSection class provides custom handling and programmatic access for the TrackbackHttpHandler.

Examples

The following example is an excerpt of a configuration file that utilizes the TrackbackHttpHandlerConfigurationSection class:

<configuration>

<configSections>
<section name="argotic.trackbackHandler" type="Argotic.Core.Configuration.TrackbackHttpHandlerConfigurationSection, Argotic.Core" />
</configSections>

<argotic.trackbackHandler
title="Trackback Ping Handler"
<listeners>
<add name="XmlTrackbackListener" type="Argotic.Core.Web.XmlTrackbackListener, Argotic.Core" path="~/App_Data/Syndication/Trackback.xml"/>
</listeners>
</argotic.trackbackHandler>

</configuration>

Inheritance Hierarchy

System..::.Object
  System.Configuration..::.ConfigurationElement
    System.Configuration..::.ConfigurationSection
      Argotic.Core.Configuration..::.TrackbackHttpHandlerConfigurationSection

See Also