Table of Contents

Struct Archive.Stream

Namespace
Vonage.Video.Archives
Assembly
Vonage.dll

Represents a stream.

public struct Archive.Stream
Inherited Members

Constructors

Stream(string, bool, bool)

Creates a stream.

[JsonConstructor]
public Stream(string streamId, bool hasAudio, bool hasVideo)

Parameters

streamId string

The stream ID of the stream included in the archive.

hasAudio bool

Whether the archive will record audio (true, the default) or not (false). If you set both hasAudio and hasVideo to false, the call to this method results in an error.

hasVideo bool

Whether the archive will record video (true, the default) or not (false). If you set both hasAudio and hasVideo to false, the call to this method results in an error.

Properties

HasAudio

Whether the archive will record audio (true, the default) or not (false). If you set both hasAudio and hasVideo to false, the call to this method results in an error.

public readonly bool HasAudio { get; }

Property Value

bool

HasVideo

Whether the archive will record video (true, the default) or not (false). If you set both hasAudio and hasVideo to false, the call to this method results in an error.

public readonly bool HasVideo { get; }

Property Value

bool

StreamId

The stream ID of the stream included in the archive.

public readonly string StreamId { get; }

Property Value

string