示例#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();
 }