Table of Contents

Class ContainerInfo

Namespace
Ando.Execution
Assembly
ando.dll

Container information and state. Immutable record for safe passing between methods.

public record ContainerInfo : IEquatable<ContainerInfo>
Inheritance
ContainerInfo
Implements
Inherited Members

Constructors

ContainerInfo(string, string, bool)

Container information and state. Immutable record for safe passing between methods.

public ContainerInfo(string Id, string Name, bool IsRunning)

Parameters

Id string
Name string
IsRunning bool

Properties

Id

public string Id { get; init; }

Property Value

string

IsRunning

public bool IsRunning { get; init; }

Property Value

bool

Name

public string Name { get; init; }

Property Value

string