Table of Contents

Class Broadcast.LiveStream

Namespace
Vonage.Video.Broadcast
Assembly
Vonage.dll

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

StreamId Guid

The stream ID of the stream included in the broadcast.

HasAudio bool

Whether the stream's audio is included in the broadcast.

HasVideo bool

Whether 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

bool

HasVideo

Whether the stream's video is included in the broadcast.

public bool HasVideo { get; init; }

Property Value

bool

StreamId

The stream ID of the stream included in the broadcast.

public Guid StreamId { get; init; }

Property Value

Guid