Dev2.JTokenExtensionmethods.IsPrimitive C# (CSharp) 메소드

IsPrimitive() 공개 정적인 메소드

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