diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2010-01-11 21:22:18 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2010-01-11 21:22:18 -0800 |
commit | 7bda163a8a8d5a82e2f29833c8762aa8852bd3d4 (patch) | |
tree | bfb9036a3c4ebe89af7a06b2cc9b07fc8aea1d05 /src | |
parent | e0658de2fcbece71977c12156b4b077fd274d166 (diff) | |
download | DotNetOpenAuth-7bda163a8a8d5a82e2f29833c8762aa8852bd3d4.zip DotNetOpenAuth-7bda163a8a8d5a82e2f29833c8762aa8852bd3d4.tar.gz DotNetOpenAuth-7bda163a8a8d5a82e2f29833c8762aa8852bd3d4.tar.bz2 |
StyleCop fix.
Diffstat (limited to 'src')
-rw-r--r-- | src/DotNetOpenAuth/Messaging/MessagingUtilities.cs | 50 |
1 files changed, 25 insertions, 25 deletions
diff --git a/src/DotNetOpenAuth/Messaging/MessagingUtilities.cs b/src/DotNetOpenAuth/Messaging/MessagingUtilities.cs index 9683093..e545f8d 100644 --- a/src/DotNetOpenAuth/Messaging/MessagingUtilities.cs +++ b/src/DotNetOpenAuth/Messaging/MessagingUtilities.cs @@ -157,6 +157,31 @@ namespace DotNetOpenAuth.Messaging { } /// <summary> + /// Assembles a message comprised of the message on a given exception and all inner exceptions. + /// </summary> + /// <param name="exception">The exception.</param> + /// <returns>The assembled message.</returns> + public static string ToStringDescriptive(this Exception exception) { + // The input being null is probably bad, but since this method is called + // from a catch block, we don't really want to throw a new exception and + // hide the details of this one. + if (exception == null) { + Logger.Messaging.Error("MessagingUtilities.GetAllMessages called with null input."); + } + + StringBuilder message = new StringBuilder(); + while (exception != null) { + message.Append(exception.Message); + exception = exception.InnerException; + if (exception != null) { + message.Append(" "); + } + } + + return message.ToString(); + } + + /// <summary> /// Sends a multipart HTTP POST request (useful for posting files) but doesn't call GetResponse on it. /// </summary> /// <param name="request">The HTTP request.</param> @@ -203,31 +228,6 @@ namespace DotNetOpenAuth.Messaging { } /// <summary> - /// Assembles a message comprised of the message on a given exception and all inner exceptions. - /// </summary> - /// <param name="exception">The exception.</param> - /// <returns>The assembled message.</returns> - public static string ToStringDescriptive(this Exception exception) { - // The input being null is probably bad, but since this method is called - // from a catch block, we don't really want to throw a new exception and - // hide the details of this one. - if (exception == null) { - Logger.Messaging.Error("MessagingUtilities.GetAllMessages called with null input."); - } - - StringBuilder message = new StringBuilder(); - while (exception != null) { - message.Append(exception.Message); - exception = exception.InnerException; - if (exception != null) { - message.Append(" "); - } - } - - return message.ToString(); - } - - /// <summary> /// Gets a buffer of random data (not cryptographically strong). /// </summary> /// <param name="length">The length of the sequence to generate.</param> |