Dev2.JTokenExtensionmethods.IsPrimitive C# (CSharp) Method

IsPrimitive() public static method

public static IsPrimitive ( this token ) : bool
token this
return bool
        public static bool IsPrimitive(this JToken token)
        {
            return token is JValue;
        }