using System; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using CMS.SiteProvider; using CMS.UIControls; /// /// Metafile WebDAV control. /// public partial class CMSModules_WebDAV_Controls_MetaFileWebDAVEditControl : WebDAVEditControl { #region "Constructors" /// /// Creates instance. /// public CMSModules_WebDAV_Controls_MetaFileWebDAVEditControl() { mControlType = WebDAVControlTypeEnum.MetaFile; } #endregion #region "Methods" /// /// Gets the meta file URL. /// protected override string GetUrl() { return MetaFileURLProvider.GetWebDAVUrl(MetaFileGUID, FileName, SiteName); } #endregion }