AspNetEdit.UI.DefaultPropertyTab.GetProperties C# (CSharp) 메소드

GetProperties() 공개 메소드

public GetProperties ( object component, Attribute attributes ) : PropertyDescriptorCollection
component object
attributes System.Attribute
리턴 System.ComponentModel.PropertyDescriptorCollection
        public override PropertyDescriptorCollection GetProperties(object component, Attribute[] attributes)
        {
            if (component == null)
                return new PropertyDescriptorCollection (new PropertyDescriptor[] {});
            return TypeDescriptor.GetProperties (component);
        }