System.ComponentModel.DebugExtendedPropertyDescriptor.GetChildProperties C# (CSharp) Method

GetChildProperties() public method

public GetChildProperties ( object instance, Attribute filter ) : PropertyDescriptorCollection
instance object
filter System.Attribute
return PropertyDescriptorCollection
        public override PropertyDescriptorCollection GetChildProperties(object instance, Attribute[] filter) {
            if (instance == null) {
                return DebugTypeDescriptor.GetProperties(PropertyType, filter);
            }
            else {
                return DebugTypeDescriptor.GetProperties(instance, filter);
            }
        }