Created
December 22, 2014 20:32
-
-
Save JayBazuzi/7a6bb3f44255da11a2cc 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
// If provided, get and log the response from the remote host. | |
IfProvidedGetAndLogResponseFromRemoteHost(logger, ex.Response); | |
// --------------------------------------- | |
void IfProvidedGetAndLogResponseFromRemoteHost(logger, webResponse) | |
{ | |
var response = string.Empty; | |
if (response != null) | |
{ | |
using (var readerStream = new StreamReader(webResponse.GetResponseStream())) | |
{ | |
response = readerStream.ReadToEnd().Trim(); | |
logger.Error("Error response:"); | |
logger.Error(response); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment