예제 #1
0
        public OsdbSearchSubtitleResponse SearchSubtitles(VideoInfo[] videoInfoList)
        {
            CheckAuthentication("SearchSubtitles");

            if (videoInfoList == null)
            {
                throw new SubtitleDownloadException("Cannot perform SearchSubtitles", "Missing video info data");
            }

            return(_client.SearchSubtitles(_sessionToken, videoInfoList));
        }