Gets the return code from the most recent flow of this request.

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

Syntax

C#
public int ReturnCode { get; }
Visual Basic (Declaration)
Public ReadOnly Property ReturnCode As Integer
Visual C++
public:
property int ReturnCode {
	int get ();
}

Property Value

The return code from the request. The possible values depend upon the type of GatewayRequest that was flowed.

Remarks

This property is a combination of GatewayReturnCode and any other return code specific to the type of request being flowed. If a request causes any non-zero return code, it will be returned by this property. This means that if ReturnCode is zero, the request is guaranteed to have completed successfully.

To obtain a string representation of the return code, use ReturnCodeString.

See Also