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);
            }
        }