Click or drag to resize
CSeq Class
Represents the CSeq header in an RTSP message. The CSeq field specifies the sequence number for an RTSP request- response pair. This field MUST be present in all requests and responses. For every RTSP request containing the given sequence number, there will be a corresponding response having the same number. Any retransmitted request must contain the same sequence number as the original (i.e. the sequence number is not incremented for retransmissions of the same request).
Inheritance Hierarchy
SystemObject
  StreamCoders.RtspBaseHeader
    StreamCoders.RtspCSeq

Namespace: StreamCoders.Rtsp
Assembly: MediaBase (in MediaBase.dll) Version: 2.0.5.0 (2.0.5.0)
Syntax
public class CSeq : BaseHeader

The CSeq type exposes the following members.

Constructors
  NameDescription
Public methodCSeq
Constructor.
Top
Properties
  NameDescription
Public propertyHeaderType
Gets or sets the type of the RTSP header.
(Inherited from BaseHeader.)
Public propertySequenceNumber
The sequence number. This field should monotonically increase for each unique request.
Top
Methods
  NameDescription
Public methodEquals(Object)
Tests if this object is considered equal to another.
(Overrides ObjectEquals(Object).)
Public methodEquals(CSeq)
Tests if this CSeq is considered equal to another.
Public methodGetHashCode
Calculates the hash code for this object.
(Overrides ObjectGetHashCode.)
Public methodParse
Parses Header.
(Overrides BaseHeaderParse(String).)
Public methodToString
Serializes object to text.
(Overrides BaseHeaderToString.)
Top
Operators
  NameDescription
Public operatorStatic memberEquality
Equality operator.
Public operatorStatic memberInequality
Inequality operator.
Top
Extension Methods
  NameDescription
Public Extension MethodCopyOverloaded.
Creates a copy of the object.
(Defined by ObjectExtensions.)
Public Extension MethodCopy(Object)Overloaded.
Creates a deep copy of the object using the supplied object as a target for the copy operation.
(Defined by ObjectExtensions.)
Top
See Also