Class Broadcast.LiveStream
Represents a stream currently being broadcast.
public record Broadcast.LiveStream : IEquatable<Broadcast.LiveStream>
- Inheritance
-
Broadcast.LiveStream
- Implements
- Inherited Members
Constructors
LiveStream(Guid, bool, bool)
Represents a stream currently being broadcast.
public LiveStream(Guid StreamId, bool HasAudio, bool HasVideo)
Parameters
StreamIdGuidThe stream ID of the stream included in the broadcast.
HasAudioboolWhether the stream's audio is included in the broadcast.
HasVideoboolWhether the stream's video is included in the broadcast.
Properties
HasAudio
Whether the stream's audio is included in the broadcast.
public bool HasAudio { get; init; }
Property Value
HasVideo
Whether the stream's video is included in the broadcast.
public bool HasVideo { get; init; }
Property Value
StreamId
The stream ID of the stream included in the broadcast.
public Guid StreamId { get; init; }