System.ComponentModel.NullableConverter.GetPropertiesSupported C# (CSharp) 메소드

GetPropertiesSupported() 공개 메소드

public GetPropertiesSupported ( ITypeDescriptorContext context ) : bool
context ITypeDescriptorContext
리턴 bool
        public override bool GetPropertiesSupported(ITypeDescriptorContext context) {
            if (simpleTypeConverter != null) {
                return simpleTypeConverter.GetPropertiesSupported(context);
            }

            return base.GetPropertiesSupported(context);
        }