IP*Works! 2016 .NET Edition
IP*Works! 2016 .NET Edition
Questions / Feedback?

Disconnected Event

This event is fired when connection to the SMS service is lost.

Syntax

[VB.NET]
Public Event OnDisconnected As OnDisconnectedHandler
[C#]
public event OnDisconnectedHandler OnDisconnected;

public delegate void OnDisconnectedHandler(object sender, SmppDisconnectedEventArgs e);

class SmppDisconnectedEventArgs : EventArgs {
  int StatusCode {get;}
  string Description {get;}
}

Remarks

After sending an unbind operation to the server, this event will be fired containing the results of that operation. This event may also be fired if the socket connection to the service is lost.

If the event was fired because of an unbind operation, StatusCode will contain the command status set by the server. Otherwise, it will contain the socket code for the type of disconnection. For a status code value of "0", Description will contain "OK." Otherwise, it will contain a standard interpretation of the value in StatusCode.

 
 
Copyright (c) 2020 /n software inc. - All rights reserved.
IP*Works! 2016 .NET Edition - Version 16.0 [Build 7353]