Beispiel #1
0
        // Gets one or more UET Tags.

        private async Task <GetUetTagsByIdsResponse> GetUetTagsByIdsAsync(IList <long> tagIds)
        {
            var request = new GetUetTagsByIdsRequest
            {
                TagIds = tagIds,
            };

            return(await Service.CallAsync((s, r) => s.GetUetTagsByIdsAsync(r), request));
        }
        // Gets one or more UET Tags.

        private async Task<GetUetTagsByIdsResponse> GetUetTagsByIdsAsync(IList<long> tagIds)
        {
            var request = new GetUetTagsByIdsRequest
            {
                TagIds = tagIds,
            };

            return await Service.CallAsync((s, r) => s.GetUetTagsByIdsAsync(r), request);
        }