System.ServiceModel.Security.NonceCache
namespace System.ServiceModel.Security
{
public abstract class NonceCache
{
public TimeSpan CachingTimeSpan { get; set; }
public int CacheSize { get; set; }
public abstract bool TryAddNonce(byte[] nonce);
public abstract bool CheckNonce(byte[] nonce);
protected NonceCache();
}
}