/// <summary>
        ///
        /// </summary>
        /// <param name="tag"></param>
        /// <param name="start"></param>
        /// <param name="offset"></param>
        /// <returns></returns>
        /// <exception cref="ArgumentException">If the <paramref name="tag"/> is badly formatted.</exception>
        /// <exception cref="CritSendException">In case of soap error, contains the message.</exception>
        public string GetTagPaginated(string tag, int start, int offset)
        {
            string result = null;

            CallWebMethod(delegate(Authentication auth)
            {
                result = _client.getTagPaginated(auth, tag, start, offset);
            }, true);
            return(result);
        }