BoxKite.Twitter.Models.TweetExtensions.HasEntities C# (CSharp) 메소드

HasEntities() 공개 정적인 메소드

public static HasEntities ( this tweet ) : bool
tweet this
리턴 bool
        public static bool HasEntities(this Tweet tweet)
        {
            if (tweet.Entities.Hashtags.HasAny())
                return true;

            if (tweet.Entities.Media.HasAny())
                return true;

            if (tweet.Entities.Mentions.HasAny())
                return true;

            if (tweet.Entities.Urls.HasAny())
                return true;

            return false;
        }