Skip to content

Class PackageDistributionManifest

Namespace: Cephalon.Engine.Manifest
Assembly: Cephalon.Engine.dll

Describes where an independently shipped package is distributed from.

public sealed class PackageDistributionManifest

objectPackageDistributionManifest

object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.ReferenceEquals(object?, object?), object.ToString()

PackageDistributionManifest(string?, string?, string?)

Section titled “ PackageDistributionManifest(string?, string?, string?)”

Creates a package distribution manifest entry.

public PackageDistributionManifest(string? channel, string? manifestUri, string? packageUri)

channel string?

The release channel declared by the package manifest, when available.

manifestUri string?

The externally reachable package-manifest URI declared by the package manifest, when available.

packageUri string?

The externally reachable package archive or feed URI declared by the package manifest, when available.

Gets the declared release channel, when available.

public string? Channel { get; }

string?

Gets the declared externally reachable package-manifest URI, when available.

public string? ManifestUri { get; }

string?

Gets the declared externally reachable package archive or feed URI, when available.

public string? PackageUri { get; }

string?