diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2008-09-28 15:04:04 -0700 |
---|---|---|
committer | Andrew <andrewarnott@gmail.com> | 2008-09-28 15:04:04 -0700 |
commit | ad79dec82e43910db29d1a259155f2cf3f86e731 (patch) | |
tree | 34fc5eab2d77fdd3e6c2aa48f2d056c5e6ba6ff5 /src/DotNetOAuth/Util.cs | |
parent | 92ec674bd52330d4847f75150cd34263336219b6 (diff) | |
download | DotNetOpenAuth-ad79dec82e43910db29d1a259155f2cf3f86e731.zip DotNetOpenAuth-ad79dec82e43910db29d1a259155f2cf3f86e731.tar.gz DotNetOpenAuth-ad79dec82e43910db29d1a259155f2cf3f86e731.tar.bz2 |
Appendix scenario test passing (again), this time with HMAC signing of HTTP requests.
Diffstat (limited to 'src/DotNetOAuth/Util.cs')
-rw-r--r-- | src/DotNetOAuth/Util.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/DotNetOAuth/Util.cs b/src/DotNetOAuth/Util.cs index e3af5f1..1bf76b1 100644 --- a/src/DotNetOAuth/Util.cs +++ b/src/DotNetOAuth/Util.cs @@ -6,11 +6,12 @@ namespace DotNetOAuth {
using System.Globalization;
using System.Reflection;
+ using DotNetOAuth.Messaging;
/// <summary>
/// A grab-bag utility class.
/// </summary>
- internal class Util {
+ internal static class Util {
/// <summary>
/// Gets a human-readable description of the library name and version, including
/// whether the build is an official or private one.
|