コード例 #1
0
        public void GetRevocationList()
        {
            _ns.Settings.OperationTimeout = TimeSpan.FromDays(1);
            var things = _ns.GetRevokedPublishers("hub").ToList();

            Console.WriteLine($"Got {things.Count} revoked publishers from the API");
            foreach (var r in things)
            {
                Console.WriteLine($"Got revoked publisher {r.Name}");
            }
        }