Carrotware.CMS.UI.Controls.SearchBox.GetEntryFormControl C# (CSharp) Method

GetEntryFormControl() protected method

protected GetEntryFormControl ( Type type ) : Control
type System.Type
return System.Web.UI.Control
        protected Control GetEntryFormControl(Type type)
        {
            return (from x in EntryFormControls
                    where x.ID != null
                    && x.GetType() == type
                    select x).FirstOrDefault();
        }

Same methods

SearchBox::GetEntryFormControl ( string ControlName ) : Control