public override void Invoke(AWSCredentials creds, RegionEndpoint region, int maxItems)
        {
            AmazonMediaPackageConfig config = new AmazonMediaPackageConfig();

            config.RegionEndpoint = region;
            ConfigureClient(config);
            AmazonMediaPackageClient client = new AmazonMediaPackageClient(creds, config);

            ListChannelsResponse resp = new ListChannelsResponse();

            do
            {
                ListChannelsRequest req = new ListChannelsRequest
                {
                    NextToken = resp.NextToken
                    ,
                    MaxResults = maxItems
                };

                resp = client.ListChannels(req);
                CheckError(resp.HttpStatusCode, "200");

                foreach (var obj in resp.Channels)
                {
                    AddObject(obj);
                }
            }while (!string.IsNullOrEmpty(resp.NextToken));
        }
        /// <summary>
        /// Unmarshaller the response from the service to the response class.
        /// </summary>
        /// <param name="context"></param>
        /// <returns></returns>
        public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            ListChannelsResponse response = new ListChannelsResponse();

            context.Read();
            int targetDepth = context.CurrentDepth;

            while (context.ReadAtDepth(targetDepth))
            {
                if (context.TestExpression("channels", targetDepth))
                {
                    var unmarshaller = new ListUnmarshaller <ChannelSummary, ChannelSummaryUnmarshaller>(ChannelSummaryUnmarshaller.Instance);
                    response.Channels = unmarshaller.Unmarshall(context);
                    continue;
                }
                if (context.TestExpression("nextToken", targetDepth))
                {
                    var unmarshaller = StringUnmarshaller.Instance;
                    response.NextToken = unmarshaller.Unmarshall(context);
                    continue;
                }
            }

            return(response);
        }
Beispiel #3
0
        public void ListChannelsTest()
        {
            // Arrange
            LndClient lndClient = new LndClient();

            // Act
            ListChannelsResponse response = lndClient.ListChannels();

            Assert.IsNotNull(response);
        }