AspNetEdit.UI.DefaultPropertyTab.GetProperties C# (CSharp) Méthode

GetProperties() public méthode

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