Skip to content

Instantly share code, notes, and snippets.

@chamook
Created August 27, 2018 14:01
Show Gist options
  • Select an option

  • Save chamook/cbb1392afe99a2dc0bfb44ab3965f77b to your computer and use it in GitHub Desktop.

Select an option

Save chamook/cbb1392afe99a2dc0bfb44ab3965f77b to your computer and use it in GitHub Desktop.
public class ConfigurationProvider
{
public int TimeoutSeconds =>
Int32.Parse(Environment.GetEnvironmentVariable("TIMEOUT_SECONDS"));
public Uri Endpoint =>
new Uri(Environment.GetEnvironmentVariable("ENDPOINT"));
public int RetryCount =>
Int32.Parse(Environment.GetEnvironmentVariable("RETRY_COUNT"));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment