Show / Hide Table of Contents

Class FeedTarget

Associates a FeedUri with the Feed data acquired from there.

Inheritance
Object
FeedTarget
Implements
IEquatable<FeedTarget>
Namespace: ZeroInstall.Model
Assembly: ZeroInstall.Model.dll
Syntax
public sealed class FeedTarget : ValueType

Constructors

FeedTarget(FeedUri, Feed)

Associates a FeedUri with the Feed data acquired from there.

Declaration
public FeedTarget(FeedUri Uri, Feed Feed)
Parameters
Type Name Description
FeedUri Uri

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.

Declaration
public Feed Feed { get; set; }
Property Value
Type Description
Feed

Uri

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

Declaration
public FeedUri Uri { get; set; }
Property Value
Type Description
FeedUri

Methods

Deconstruct(out FeedUri, out Feed)

Declaration
public void Deconstruct(out FeedUri Uri, out Feed Feed)
Parameters
Type Name Description
FeedUri Uri
Feed Feed

Equals(Object)

Declaration
public override bool Equals(object obj)
Parameters
Type Name Description
Object obj
Returns
Type Description
Boolean

Equals(FeedTarget)

Declaration
public bool Equals(FeedTarget other)
Parameters
Type Name Description
FeedTarget other
Returns
Type Description
Boolean

GetHashCode()

Declaration
public override int GetHashCode()
Returns
Type Description
Int32

ToString()

Declaration
public override string ToString()
Returns
Type Description
String

Operators

Equality(FeedTarget, FeedTarget)

Declaration
public static bool operator ==(FeedTarget left, FeedTarget right)
Parameters
Type Name Description
FeedTarget left
FeedTarget right
Returns
Type Description
Boolean

Inequality(FeedTarget, FeedTarget)

Declaration
public static bool operator !=(FeedTarget left, FeedTarget right)
Parameters
Type Name Description
FeedTarget left
FeedTarget right
Returns
Type Description
Boolean

Implements

System.IEquatable<T>
In This Article
Back to top Copyright Bastian Eicher et al