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

Connected Event

This event is fired after a successful bind operation.

Syntax

[VB.NET]
Public Event OnConnected As OnConnectedHandler
[C#]
public event OnConnectedHandler OnConnected;

public delegate void OnConnectedHandler(object sender, SmppConnectedEventArgs e);

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

Remarks

After establishing a socket connection to the SMPPServer, the component will attempt to send a bind as transmitter command. Upon completion of this operation, the server will respond with either a success or failure state, reflected in the Connected event's parameters.

StatusCode will contain the command status (error code) returned by the server. For a StatusCode of "0", Description will be "OK." Otherwise, it will contain a standard interpretation of the error.

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