summaryrefslogtreecommitdiffstats
path: root/samples/OAuth2ProtectedWebApi/Code/MemoryNonceStore.cs
blob: 3bec259aa7664bb8ea1371580965c96380289d83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace OAuth2ProtectedWebApi.Code {
	using System;
	using System.Collections.Generic;
	using System.Linq;
	using System.Web;

	using DotNetOpenAuth.Messaging.Bindings;

	internal class MemoryNonceStore : INonceStore {
		public bool StoreNonce(string context, string nonce, DateTime timestampUtc) {
			return true;
		}
	}
}