Skip to content

Instantly share code, notes, and snippets.

@brentschooley
Created June 6, 2014 21:23
Show Gist options
  • Save brentschooley/ef43b5775451de9489fc to your computer and use it in GitHub Desktop.
Save brentschooley/ef43b5775451de9489fc to your computer and use it in GitHub Desktop.
private static string GetCredential(string credential)
{
var credentialValue = ConfigurationManager.AppSettings[credential];
if (String.IsNullOrEmpty(credentialValue))
{
credentialValue = System.Environment.GetEnvironmentVariable(credential, EnvironmentVariableTarget.Machine);
}
return credentialValue;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment