Skip to content

TapePlaybackException

Namespace: Hex1b.Automation

Assembly: Hex1b.dll

Reports a failure after tape execution has begun.

csharp
public sealed class TapePlaybackException : Exception, ISerializable

Inheritance

ObjectExceptionTapePlaybackException

Implements

Properties

Command

Gets the source command whose execution failed, if known.

Returns: TapeCommand

csharp
public TapeCommand? Command { get; }

CompletedCommandCount

Gets the number of commands completed before failure.

Returns: Int32

csharp
public int CompletedCommandCount { get; }

PartialArtifacts

Gets artifact paths that may contain partial recordings.

Returns: IReadOnlyList<TapeArtifact>

csharp
public IReadOnlyList<TapeArtifact> PartialArtifacts { get; }

TerminalText

Gets text from the failure boundary without owning terminal resources.

Returns: String

csharp
public string TerminalText { get; }

Released under the MIT License.