Table of Contents

Struct FeedTarget

Namespace
ZeroInstall.Model
Assembly
ZeroInstall.Model.dll

Associates a FeedUri with the Feed data acquired from there.

public readonly record struct FeedTarget : IEquatable<FeedTarget>
Implements
Inherited Members

Constructors

FeedTarget(FeedUri, Feed)

Associates a FeedUri with the Feed data acquired from there.

public FeedTarget(FeedUri Uri, Feed Feed)

Parameters

Uri FeedUri

The URI or local path (must be absolute) to the feed.

Feed Feed

The data acquired from Uri. Normalize(FeedUri?) has already been called.

Properties

Feed

The data acquired from Uri. Normalize(FeedUri?) has already been called.

public Feed Feed { get; init; }

Property Value

Feed

Uri

The URI or local path (must be absolute) to the feed.

public FeedUri Uri { get; init; }

Property Value

FeedUri

Methods

ToString()

Returns the fully qualified type name of this instance.

public override string ToString()

Returns

string

The fully qualified type name.