Gets or sets the timeout period for the request.

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

Syntax

C#
public short Timeout { get; set; }
Visual Basic (Declaration)
Public Property Timeout As Short
Visual C++
public:
property short Timeout {
	short get ();
	void set (short value);
}

Property Value

The timeout period for the request, in seconds, or zero for no timeout.

Remarks

Important Note:

Setting a timeout period for the request is not recommended unless you have fully read and understood the advice given in the CICS Transaction Gateway Programming Guide. The main concern with setting a timeout period is that the application may not know whether a unit of work has been committed or backed out if a timeout occurs. This is particularly an issue when using logical units of work which are not extended.

See Also