Share via


RtspSource Constructors

Definition

Overloads

RtspSource()

Initializes a new instance of the RtspSource class.

RtspSource(String, EndpointBase, Nullable<RtspTransport>)

Initializes a new instance of the RtspSource class.

RtspSource()

Initializes a new instance of the RtspSource class.

public RtspSource ();
Public Sub New ()

Applies to

RtspSource(String, EndpointBase, Nullable<RtspTransport>)

Initializes a new instance of the RtspSource class.

public RtspSource (string name, Microsoft.Azure.Management.VideoAnalyzer.Models.EndpointBase endpoint, Microsoft.Azure.Management.VideoAnalyzer.Models.RtspTransport? transport = default);
new Microsoft.Azure.Management.VideoAnalyzer.Models.RtspSource : string * Microsoft.Azure.Management.VideoAnalyzer.Models.EndpointBase * Nullable<Microsoft.Azure.Management.VideoAnalyzer.Models.RtspTransport> -> Microsoft.Azure.Management.VideoAnalyzer.Models.RtspSource
Public Sub New (name As String, endpoint As EndpointBase, Optional transport As Nullable(Of RtspTransport) = Nothing)

Parameters

name
String

Node name. Must be unique within the topology.

endpoint
EndpointBase

RTSP endpoint information for Video Analyzer to connect to. This contains the required information for Video Analyzer to connect to RTSP cameras and/or generic RTSP servers.

transport
Nullable<RtspTransport>

Network transport utilized by the RTSP and RTP exchange: TCP or HTTP. When using TCP, the RTP packets are interleaved on the TCP RTSP connection. When using HTTP, the RTSP messages are exchanged through long lived HTTP connections, and the RTP packages are interleaved in the HTTP connections alongside the RTSP messages. Possible values include: 'Http', 'Tcp'

Applies to