你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
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. |