Table of Contents

Class MoongateTCPExceptionEventArgs

Namespace
Moongate.Network.Events
Assembly
Moongate.Network.dll

Event payload containing an exception raised by server or client network loops.

public sealed class MoongateTCPExceptionEventArgs : EventArgs
Inheritance
MoongateTCPExceptionEventArgs
Inherited Members

Constructors

MoongateTCPExceptionEventArgs(Exception, MoongateTCPClient?)

Event payload containing an exception raised by server or client network loops.

public MoongateTCPExceptionEventArgs(Exception exception, MoongateTCPClient? client = null)

Parameters

exception Exception
client MoongateTCPClient

Properties

Client

Client related to the exception, when available.

public MoongateTCPClient? Client { get; }

Property Value

MoongateTCPClient

Exception

Exception raised by the networking component.

public Exception Exception { get; }

Property Value

Exception