summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenId/RelyingParty/IDirectMessageChannel.cs
blob: 122f258e0fa2c2b6d29a584b28da45bba201d5ac (plain)
1
2
3
4
5
6
7
using System.Collections.Generic;

namespace DotNetOpenId.RelyingParty {
	internal interface IDirectMessageChannel {
		IDictionary<string, string> SendDirectMessageAndGetResponse(ServiceEndpoint provider, IDictionary<string, string> fields);
	}
}