AspNetEdit.UI.DefaultPropertyTab.GetProperties C# (CSharp) Method

GetProperties() public method

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