File: System\Web\UI\Design\WebControls\DataPagerDesigner.cs
Project: System.Web.Extensions.Design.dll (System.Web.Extensions.Design)
#region Assembly System.Web.Extensions.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
// C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.Web.Extensions.Design.dll
#endregion
 
using System.Collections;
using System.ComponentModel;
using System.ComponentModel.Design;
using System.Runtime;
 
namespace System.Web.UI.Design.WebControls
{
    public class DataPagerDesigner : ControlDesigner
    {
        [TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]
        public DataPagerDesigner();
 
        public override DesignerActionListCollection ActionLists { get; }
        public string PagedControlID { get; set; }
        public override TemplateGroupCollection TemplateGroups { get; }
        protected override bool UsePreviewControl { get; }
 
        public override string GetDesignTimeHtml();
        public override void Initialize(IComponent component);
        protected override string GetEmptyDesignTimeHtml();
        protected override void PreFilterProperties(IDictionary properties);
    }
}