using System.Security.Permissions; namespace System.Web.DynamicData { /// /// Interface that represents a field template. Though by default field templates are User Controls (ascx) /// they don't have to be. /// public interface IFieldTemplate { /// /// Sets the IFieldTemplateHost used by this field template to know what column it is dealing with /// /// void SetHost(IFieldTemplateHost host); } }