Class ReplayAttackException
- Namespace
- ZeroInstall.Services.Feeds
- Assembly
- ZeroInstall.Services.dll
Indicates a feed file that downloaded by the IFeedManager is older than a version already located in the IFeedCache.
public sealed class ReplayAttackException : IOException, ISerializable
- Inheritance
-
ReplayAttackException
- Implements
- Inherited Members
Constructors
ReplayAttackException(Uri, DateTime, DateTime)
Creates a new replay attack exception.
public ReplayAttackException(Uri feedUrl, DateTime oldTime, DateTime newTime)
Parameters
feedUrl
UriThe URL of the feed file to be added to the cache.
oldTime
DateTimeThe last changed time stamp of the existing file in the cache.
newTime
DateTimeThe last changed time stamp of the new file to be added.
Properties
FeedUrl
The URL of the feed file to be added to the cache.
public Uri FeedUrl { get; }
Property Value
NewTime
The last changed time stamp of the new file to be added.
public DateTime NewTime { get; }
Property Value
OldTime
The last changed time stamp of the existing file in the cache.
public DateTime OldTime { get; }