OpenTween.Twitter.VerifyApiResultCount C# (CSharp) 메소드

VerifyApiResultCount() 공개 정적인 메소드

渡された取得件数がWORKERTYPEに応じた取得可能範囲に収まっているか検証する
public static VerifyApiResultCount ( MyCommon type, int count ) : bool
type MyCommon
count int
리턴 bool
        public static bool VerifyApiResultCount(MyCommon.WORKERTYPE type, int count)
        {
            return count >= 20 && count <= GetMaxApiResultCount(type);
        }