mirror of
https://github.com/opensim/opensim.git
synced 2026-08-01 06:06:06 +08:00
Commit 1 in of this branch feature. This is one of many...
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Net.Sockets;
|
||||
using System.Text;
|
||||
|
||||
namespace OpenSim.Region.ClientStack.TCPJSONStream
|
||||
{
|
||||
public class DisconnectedEventArgs:EventArgs
|
||||
{
|
||||
public SocketError Error { get; private set; }
|
||||
public DisconnectedEventArgs(SocketError err)
|
||||
{
|
||||
Error = err;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user