Table of Contents

Class ContentDependencyCheck.Missing

Namespace
McServerLauncher.Services
Assembly
McServerLauncher.dll

Something needed that nothing installed provides.

public record ContentDependencyCheck.Missing : IEquatable<ContentDependencyCheck.Missing>
Inheritance
ContentDependencyCheck.Missing
Implements
Inherited Members

Constructors

Missing(string, IReadOnlyList<string>)

Something needed that nothing installed provides.

public Missing(string Id, IReadOnlyList<string> NeededBy)

Parameters

Id string

The id or plugin name that is missing.

NeededBy IReadOnlyList<string>

The jars waiting on it, by file name.

Properties

Id

The id or plugin name that is missing.

public string Id { get; init; }

Property Value

string

NeededBy

The jars waiting on it, by file name.

public IReadOnlyList<string> NeededBy { get; init; }

Property Value

IReadOnlyList<string>