Class Broadcast.RtmpStream
Represents a RtmpStream.
public record Broadcast.RtmpStream : IEquatable<Broadcast.RtmpStream>
- Inheritance
-
Broadcast.RtmpStream
- Implements
- Inherited Members
Constructors
RtmpStream(Guid, string, Uri, RtmpStatus)
Represents a RtmpStream.
public RtmpStream(Guid Id, string StreamName, Uri ServerUrl, Broadcast.RtmpStatus Status)
Parameters
IdGuidThe stream Id.
StreamNamestringThe stream name.
ServerUrlUriThe server url.
StatusBroadcast.RtmpStatusThe stream status.
Properties
Id
The stream Id.
public Guid Id { get; init; }
Property Value
ServerUrl
The server url.
public Uri ServerUrl { get; init; }
Property Value
Status
The stream status.
public Broadcast.RtmpStatus Status { get; init; }
Property Value
StreamName
The stream name.
public string StreamName { get; init; }