diff options
Diffstat (limited to 'src/DotNetOpenId/RelyingParty/IDirectMessageChannel.cs')
-rw-r--r-- | src/DotNetOpenId/RelyingParty/IDirectMessageChannel.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/DotNetOpenId/RelyingParty/IDirectMessageChannel.cs b/src/DotNetOpenId/RelyingParty/IDirectMessageChannel.cs new file mode 100644 index 0000000..122f258 --- /dev/null +++ b/src/DotNetOpenId/RelyingParty/IDirectMessageChannel.cs @@ -0,0 +1,7 @@ +using System.Collections.Generic;
+
+namespace DotNetOpenId.RelyingParty {
+ internal interface IDirectMessageChannel {
+ IDictionary<string, string> SendDirectMessageAndGetResponse(ServiceEndpoint provider, IDictionary<string, string> fields);
+ }
+}
|