Table of Contents

Class MatrixEntry

Namespace
AgentContainers.Core.Matrix
Assembly
AgentContainers.Core.dll
A single entry in the compatibility matrix: one runtime × one agent combination.
public sealed record MatrixEntry : IEquatable<MatrixEntry>
Inheritance
MatrixEntry
Implements
Inherited Members

Constructors

MatrixEntry(string, string, string, bool)

A single entry in the compatibility matrix: one runtime × one agent combination.
public MatrixEntry(string RuntimeId, string RuntimeType, string AgentId, bool Compatible)

Parameters

RuntimeId string
RuntimeType string
AgentId string
Compatible bool

Properties

AgentId

public string AgentId { get; init; }

Property Value

string

Compatible

public bool Compatible { get; init; }

Property Value

bool

RuntimeId

public string RuntimeId { get; init; }

Property Value

string

RuntimeType

public string RuntimeType { get; init; }

Property Value

string