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