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: 9.0.0.0

Syntax

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

Field Value

The return code from the request.

Remarks

This property is a combination of GatewayReturnCode and EciReturnCode. If a request causes any non-zero return code, it will be returned by this property. A ReturnCode of zero indicates the request completed successfully.

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

See Also