Transaction (MSPL)

The Transactionbuilt-in class defines basic information about a SIP transaction.

Syntax

  Copy codeCopy code
class Transaction {
		Request Request;
		bool MarshalContent;
}

Fields

The Transactionclass defines the following field.

Field

Description

Request

Data type: Request

Contains the Requestobject that initiated the transaction.

MarshalContent

Data type: bool

Contains a Booleanflag to indicate whether the content of messages should be marshalled to the managed server applications. The default value is true. If an application never needs to access the Content of SIP messages, then it can set this property to falseto optimize the communication between the server and the managed server application.

See also