Пример #1
0
 internal SocketException(string message, UltimaSocket socket, byte[] data, Exception inner)
     : base(message, inner)
 {
     socketDump = socket.Dump();
     socketDump += "Current data:\n" + PacketLogging.BuildString(data);
 }
Пример #2
0
 internal SocketException(string message, UltimaSocket socket, Exception inner)
     : base(message, inner)
 {
     socketDump = socket.Dump();
 }
Пример #3
0
 internal SocketException(UltimaSocket socket)
 {
     socketDump = socket.Dump();
 }
Пример #4
0
 internal SocketException(string message, UltimaSocket socket, byte[] data, Exception inner)
     : base(message, inner)
 {
     socketDump  = socket.Dump();
     socketDump += "Current data:\n" + PacketLogging.BuildString(data);
 }
Пример #5
0
 internal SocketException(string message, UltimaSocket socket, Exception inner)
     : base(message, inner)
 {
     socketDump = socket.Dump();
 }
Пример #6
0
 internal SocketException(UltimaSocket socket)
 {
     socketDump = socket.Dump();
 }