Skip to content
Tracon

LiveVoiceAppend

Namespace Tracon · Assembly Tracon.Abstractions.dll

Text sent into a live conversation’s context.

public sealed record LiveVoiceAppend : IEquatable<LiveVoiceAppend>

objectLiveVoiceAppend

IEquatable<LiveVoiceAppend>

object.GetType(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()

public LiveVoiceAppend()

Gets the channel the text is written to.

public required LiveVoiceAppendChannel Channel { get; init; }

LiveVoiceAppendChannel

Gets the delegation the text belongs to.

public required string DelegationId { get; init; }

string

Required on every channel, instructions included. The measured provider surface rejects an append with no delegation, so there is no session-wide append: the live model’s own instructions are set when the session is created.

Gets the text.

public required string Text { get; init; }

string

public override bool Equals(object? obj)

obj object?

bool

public bool Equals(LiveVoiceAppend? other)

other LiveVoiceAppend?

bool

public override int GetHashCode()

int

public override string ToString()

string

operator ==(LiveVoiceAppend?, LiveVoiceAppend?)

Section titled “ operator ==(LiveVoiceAppend?, LiveVoiceAppend?)”
public static bool operator ==(LiveVoiceAppend? left, LiveVoiceAppend? right)

left LiveVoiceAppend?

right LiveVoiceAppend?

bool

operator !=(LiveVoiceAppend?, LiveVoiceAppend?)

Section titled “ operator !=(LiveVoiceAppend?, LiveVoiceAppend?)”
public static bool operator !=(LiveVoiceAppend? left, LiveVoiceAppend? right)

left LiveVoiceAppend?

right LiveVoiceAppend?

bool