AsciinemaMarker
Namespace: Hex1b
Assembly: Hex1b.dll
Represents a chapter marker in an asciinema recording.
csharp
public sealed record AsciinemaMarker : IEquatable<AsciinemaMarker>Inheritance
Object → AsciinemaMarker
Implements
Constructors
AsciinemaMarker(double, string)
Represents a chapter marker in an asciinema recording.
Parameters:
Timestamp(Double): The position in seconds where this marker occurs.Label(String): The label/title of this marker.
csharp
public AsciinemaMarker(double Timestamp, string Label)Properties
Label
The label/title of this marker.
Returns: String
csharp
public string Label { get; init; }Timestamp
The position in seconds where this marker occurs.
Returns: Double
csharp
public double Timestamp { get; init; }