Files
Umbraco-CMS/umbraco/interfaces/IFormhandler.cs
Shandem f6d0d043b5 DO NOT DOWNLOAD. DOWNLOAT LATEST STABLE FROM RELEASE TAB
Created 4.1.0 branch

[TFS Changeset #55082]
2009-06-19 07:39:16 +00:00

24 lines
645 B
C#

using System;
using System.Xml;
namespace umbraco.interfaces
{
/// <summary>
/// Umbraco form handler interface. Has a simple execute statement and a redirect ID.
/// </summary>
public interface IFormhandler
{
/// <summary>
/// Executes the specified form handler node.
/// </summary>
/// <param name="formHandlerNode">The form handler node.</param>
/// <returns></returns>
bool Execute(XmlNode formHandlerNode);
/// <summary>
/// Gets the redirect ID.
/// </summary>
/// <value>The redirect ID.</value>
int redirectID {get;}
}
}