コード例 #1
0
        private void ReplicateLiveOutputs(string liveEventName)
        {
            Helpers.WriteLine("Copying live outputs...", 3);

            IPage <LiveOutput> liveOutputsPage = _sourceLiveOutputOperations.List(SourceAuth.ResourceGroup, SourceAuth.AccountName, liveEventName);

            ReplicateLiveOutputsPage(liveEventName, liveOutputsPage);

            while (liveOutputsPage.NextPageLink != null)
            {
                liveOutputsPage = _sourceLiveOutputOperations.ListNext(liveOutputsPage.NextPageLink);
                ReplicateLiveOutputsPage(liveEventName, liveOutputsPage);
            }
        }