Esempio n. 1
0
        public virtual bool IsSupportedType(Type type)
        {
            if (type == null)
            {
                throw new ArgumentNullException("type");
            }

            if (_parent != null)
            {
                return(_parent.IsSupportedType(type));
            }

            return(true);
        }