Struct Archive.Stream
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
streamIdstringThe stream ID of the stream included in the archive.
hasAudioboolWhether 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.
hasVideoboolWhether 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
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
StreamId
The stream ID of the stream included in the archive.
public readonly string StreamId { get; }