System.ComponentModel.NullableConverter.GetPropertiesSupported C# (CSharp) Méthode

GetPropertiesSupported() public méthode

public GetPropertiesSupported ( ITypeDescriptorContext context ) : bool
context ITypeDescriptorContext
Résultat bool
        public override bool GetPropertiesSupported(ITypeDescriptorContext context) {
            if (simpleTypeConverter != null) {
                return simpleTypeConverter.GetPropertiesSupported(context);
            }

            return base.GetPropertiesSupported(context);
        }