Microsoft.Azure.WebJobs.Script.Utility.IsValidUserType C# (CSharp) Method

IsValidUserType() public static method

public static IsValidUserType ( Type type ) : bool
type Type
return bool
        public static bool IsValidUserType(Type type)
        {
            return !type.IsInterface && !type.IsPrimitive && !(type.Namespace == "System");
        }