Click or drag to resize
IGDPushChannelListenerOnChannelError Method
Generic channel error callback.

Namespace:  GD
Assembly:  GD (in GD.dll) Version: 255.255.255.255
Syntax
void OnChannelError(
	int error
)

Parameters

error
Type: SystemInt32
Reason code for the condition encountered, as follows:
errorChannel Error reason
0 Push is not currently connected.
200-499 Internal error.
500-599 Internal server error.
Remarks

This callback is invoked when a permanent error condition is encountered on the associated Push Channel.

Invocation of this callback notifies the application that the Push Channel token cannot be used any more, or that the channel could not be connected in the first place. Furthermore, no (more) Push Channel notifications will be received on this channel.

The function that is invoked could alert the user that Push Channel notifications will not be received, or cause this to be displayed as an ongoing state. The function that is invoked should initiate reconnection, see Connect, after checking that the Push Channel service is available, see IsConnected.

See Also