Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dontpaniclabsgists/1d7b9be35fd9dd10894afbcd62210323 to your computer and use it in GitHub Desktop.
Save dontpaniclabsgists/1d7b9be35fd9dd10894afbcd62210323 to your computer and use it in GitHub Desktop.
Custom Configuration Sections 6
var servers = ConfigurationManager.GetSection("servers") as ServerSection;
foreach (ServerElement server in servers.Instances)
{
if (!IsAlive(server.IpAddress))
{
// Uh oh, one of the servers is dead! Do something!
Console.WriteLine($"Server {server.Key} is dead! Email {server.OwnerEmail}.");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment