Skip to content

Instantly share code, notes, and snippets.

@rquackenbush
Created June 30, 2017 15:23
Show Gist options
  • Save rquackenbush/4d37aef808794625428dfd94c4962796 to your computer and use it in GitHub Desktop.
Save rquackenbush/4d37aef808794625428dfd94c4962796 to your computer and use it in GitHub Desktop.
Outputs info on an 509 chain
foreach (var item in chain.ChainElements)
{
_output.WriteLine($"{item.Certificate.SubjectName.Name}");
foreach (var status in item.ChainElementStatus)
{
_output.WriteLine($" {status.Status}: {status.StatusInformation}");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment