System.ComponentModel.TypeDescriptor.TypeDescriptionNode.IsSupportedType C# (CSharp) Méthode

IsSupportedType() public méthode

public IsSupportedType ( Type type ) : bool
type System.Type
Résultat bool
            public override bool IsSupportedType(Type type)
            {
                if (type == null)
                {
                    throw new ArgumentNullException(nameof(type));
                }
                return Provider.IsSupportedType(type);
            }