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

Error Event

This event is fired when the server sends a protocol error message.

Syntax

[VB.NET]
Public Event OnError As OnErrorHandler
[C#]
public event OnErrorHandler OnError;

public delegate void OnErrorHandler(object sender, XmppErrorEventArgs e);

class XmppErrorEventArgs : EventArgs {
  int ErrorCode {get;}
  string Description {get;}
}

Remarks

This is fired whenever there is a protocol error. ErrorCode will contain the error code string sent by the server. Description will contain the Xmpp component's interpretation of the code.

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