Adf.Base.Domain.DescriptorPropertyParser.IsParsable C# (CSharp) Method

IsParsable() public method

Indicates whether the specified Type is parsable or not.
public IsParsable ( Type type ) : bool
type System.Type The supplied .
return bool
        public bool IsParsable(Type type)
        {
            return typeof(Descriptor).IsAssignableFrom(type);
        }