Created
August 27, 2018 14:01
-
-
Save chamook/cbb1392afe99a2dc0bfb44ab3965f77b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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