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

IsEnumerable() public static méthode

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