RtspTransport Struct
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.
public readonly struct RtspTransport : IEquatable<Azure.Media.VideoAnalyzer.Edge.Models.RtspTransport>
type RtspTransport = struct
Public Structure RtspTransport
Implements IEquatable(Of RtspTransport)
- Inheritance
-
RtspTransport
- Implements
Constructors
RtspTransport(String) |
Initializes a new instance of RtspTransport. |
Properties
Http |
HTTP transport. RTSP messages are exchanged over long running HTTP requests and RTP packets are interleaved within the HTTP channel. |
Tcp |
TCP transport. RTSP is used directly over TCP and RTP packets are interleaved within the TCP channel. |
Methods
Equals(RtspTransport) |
Indicates whether the current object is equal to another object of the same type. |
ToString() |
Returns the fully qualified type name of this instance. |
Operators
Equality(RtspTransport, RtspTransport) |
Determines if two RtspTransport values are the same. |
Implicit(String to RtspTransport) |
Converts a string to a RtspTransport. |
Inequality(RtspTransport, RtspTransport) |
Determines if two RtspTransport values are not the same. |
Applies to
Azure SDK for .NET