diff options
Diffstat (limited to 'src/DotNetOAuth/OAuthMessageTypeProvider.cs')
-rw-r--r-- | src/DotNetOAuth/OAuthMessageTypeProvider.cs | 27 |
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
+ }
+}
|