Ejemplo n.º 1
0
        private static async Task InitializeZone()
        {
            _client = Configuration.GetClient();

            bool created = await _client.CreateMasterZone(TestZoneName);

            if (!created)
            {
                throw new Exception("Unable to create " + TestZoneName);
            }
        }