C# Класс SipSharp.Messages.Headers.CSeq

Transaction identifier

The CSeq header field serves as a way to identify and order transactions. It consists of a sequence number and a method. The method MUST match that of the request. For non-REGISTER requests outside of a dialog, the sequence number value is arbitrary. The sequence number value MUST be expressible as a 32-bit unsigned integer and MUST be less than 2**31. As long as it follows the above guidelines, a client may use any mechanism it would like to select CSeq header field values.

Наследование: IHeader
Показать файл Открыть проект

Открытые свойства

Свойство Тип Описание
Empty CSeq

Private Properties

Свойство Тип Описание

Открытые методы

Метод Описание
CSeq ( ) : System

Initializes a new instance of the CSeq class.

CSeq ( int seqNr, string method ) : System

Initializes a new instance of the CSeq class.

Clone ( ) : object

Creates a new object that is a copy of the current instance.

Equals ( IHeader other ) : bool

Indicates whether the current object is equal to another object of the same type.

Equals ( object obj ) : bool
ToString ( ) : string

Описание методов

CSeq() публичный Метод

Initializes a new instance of the CSeq class.
public CSeq ( ) : System
Результат System

CSeq() публичный Метод

Initializes a new instance of the CSeq class.
public CSeq ( int seqNr, string method ) : System
seqNr int Sequence number.
method string SIP method.
Результат System

Clone() публичный Метод

Creates a new object that is a copy of the current instance.
public Clone ( ) : object
Результат object

Equals() публичный Метод

Indicates whether the current object is equal to another object of the same type.
public Equals ( IHeader other ) : bool
other IHeader An object to compare with this object. ///
Результат bool

Equals() публичный Метод

public Equals ( object obj ) : bool
obj object
Результат bool

ToString() публичный Метод

public ToString ( ) : string
Результат string

Описание свойств

Empty публичное статическое свойство

Unspecified sequence number.
public static CSeq,SipSharp.Messages.Headers Empty
Результат CSeq