Brew.Webforms.Widget.Widget C# (CSharp) Method

Widget() protected method

protected Widget ( String name ) : System
name String
return System
        protected Widget(String name)
        {
            if (string.IsNullOrEmpty(name)) {
                throw new ArgumentException("The parameter must not be empty", "widgetName");
            }

            this.Name = name;

            InitDefaults();
        }