summaryrefslogtreecommitdiffstats
path: root/src/DotNetOAuth/OAuthMessageTypeProvider.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2008-09-02 21:00:56 -0700
committerAndrew <andrewarnott@gmail.com>2008-09-02 21:00:56 -0700
commit14073d6440b506a526e4bf8d8900530130431746 (patch)
tree83158b5bad0a48f8fd76e9e00ccebe1e37c8e425 /src/DotNetOAuth/OAuthMessageTypeProvider.cs
parent0cb15a44b3b5f818a402046f13bc217a8a1e8b22 (diff)
downloadDotNetOpenAuth-14073d6440b506a526e4bf8d8900530130431746.zip
DotNetOpenAuth-14073d6440b506a526e4bf8d8900530130431746.tar.gz
DotNetOpenAuth-14073d6440b506a526e4bf8d8900530130431746.tar.bz2
Finished up the Channel stack and started with channel tests.
Diffstat (limited to 'src/DotNetOAuth/OAuthMessageTypeProvider.cs')
-rw-r--r--src/DotNetOAuth/OAuthMessageTypeProvider.cs27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/DotNetOAuth/OAuthMessageTypeProvider.cs b/src/DotNetOAuth/OAuthMessageTypeProvider.cs
new file mode 100644
index 0000000..63e1e6f
--- /dev/null
+++ b/src/DotNetOAuth/OAuthMessageTypeProvider.cs
@@ -0,0 +1,27 @@
+//-----------------------------------------------------------------------
+// <copyright file="OAuthMessageTypeProvider.cs" company="Andrew Arnott">
+// Copyright (c) Andrew Arnott. All rights reserved.
+// </copyright>
+//-----------------------------------------------------------------------
+
+namespace DotNetOAuth {
+ using System;
+ using System.Collections.Generic;
+ using System.Linq;
+ using System.Text;
+ using DotNetOAuth.Messaging;
+
+ internal class OAuthMessageTypeProvider : IMessageTypeProvider {
+ #region IMessageTypeProvider Members
+
+ public Type GetRequestMessageType(IDictionary<string, string> fields) {
+ throw new NotImplementedException();
+ }
+
+ public Type GetResponseMessageType(IProtocolMessage request, IDictionary<string, string> fields) {
+ throw new NotImplementedException();
+ }
+
+ #endregion
+ }
+}