Dev2.JTokenExtensionmethods.IsPrimitive C# (CSharp) Méthode

IsPrimitive() public static méthode

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