System.ComponentModel.DebugExtendedPropertyDescriptor.GetChildProperties C# (CSharp) Метод

GetChildProperties() публичный Метод

public GetChildProperties ( object instance, Attribute filter ) : PropertyDescriptorCollection
instance object
filter System.Attribute
Результат PropertyDescriptorCollection
        public override PropertyDescriptorCollection GetChildProperties(object instance, Attribute[] filter) {
            if (instance == null) {
                return DebugTypeDescriptor.GetProperties(PropertyType, filter);
            }
            else {
                return DebugTypeDescriptor.GetProperties(instance, filter);
            }
        }