Gets or sets the limit on the COMMAREA length sent with the request.

Namespace:  IBM.CTG
Assembly:  IBM.CTG.Client (in IBM.CTG.Client.dll) Version: 9.0.0.2

Syntax

C#
public int CommareaOutboundLength { get; set; }
Visual Basic
Public Property CommareaOutboundLength As Integer
	Get
	Set
Visual C++
public:
property int CommareaOutboundLength {
	int get ();
	void set (int value);
}

Field Value

The maximum outbound COMMAREA length, or -1 if no outbound length has been set.

Remarks

The CommareaInboundLength and CommareaOutboundLength properties can be used to limit the amount of data sent between an application and a Gateway daemon. This can be useful when there is a large difference between the size of data that is read by the CICS program and the size of data that is modified by the program.

If the value of this property is negative or larger than the size of the COMMAREA, the entire COMMAREA is sent between the application and the Gateway daemon.

See Also