Commit 1 in of this branch feature. This is one of many...

This commit is contained in:
teravus
2013-02-03 06:49:17 -05:00
parent d8d4e7f236
commit 27a0b3ecbd
6 changed files with 491 additions and 0 deletions

View File

@@ -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;
}
}
}