Brew.Webforms.Widget.Widget C# (CSharp) Méthode

Widget() protected méthode

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

            this.Name = name;

            InitDefaults();
        }