System.ComponentModel.TypeDescriptor.TypeDescriptionNode.IsSupportedType C# (CSharp) Method

IsSupportedType() public method

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