Table of Contents

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 Uri

The URL of the feed file to be added to the cache.

oldTime DateTime

The last changed time stamp of the existing file in the cache.

newTime DateTime

The 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

Uri

NewTime

The last changed time stamp of the new file to be added.

public DateTime NewTime { get; }

Property Value

DateTime

OldTime

The last changed time stamp of the existing file in the cache.

public DateTime OldTime { get; }

Property Value

DateTime