Brew.Webforms.Widget.Widget C# (CSharp) 메소드

Widget() 보호된 메소드

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

            this.Name = name;

            InitDefaults();
        }