diff options
author | teravus | 2013-02-03 06:49:17 -0500 |
---|---|---|
committer | teravus | 2013-02-03 06:49:17 -0500 |
commit | 27a0b3ecbdcf248b331742c7b2771d2a87dc8c3a (patch) | |
tree | 13d597bd5a621b1b3a0d104fd870c4416aafcfe3 /OpenSim/Region/ClientStack/TCPJSONStream/DisconnectedEventArgs.cs | |
parent | Sit and Spin reduction. If sitting, slam avatar angular velocity to zero. (diff) | |
download | opensim-SC-27a0b3ecbdcf248b331742c7b2771d2a87dc8c3a.zip opensim-SC-27a0b3ecbdcf248b331742c7b2771d2a87dc8c3a.tar.gz opensim-SC-27a0b3ecbdcf248b331742c7b2771d2a87dc8c3a.tar.bz2 opensim-SC-27a0b3ecbdcf248b331742c7b2771d2a87dc8c3a.tar.xz |
Commit 1 in of this branch feature. This is one of many...
Diffstat (limited to 'OpenSim/Region/ClientStack/TCPJSONStream/DisconnectedEventArgs.cs')
-rw-r--r-- | OpenSim/Region/ClientStack/TCPJSONStream/DisconnectedEventArgs.cs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/TCPJSONStream/DisconnectedEventArgs.cs b/OpenSim/Region/ClientStack/TCPJSONStream/DisconnectedEventArgs.cs new file mode 100644 index 0000000..32880cc --- /dev/null +++ b/OpenSim/Region/ClientStack/TCPJSONStream/DisconnectedEventArgs.cs | |||
@@ -0,0 +1,17 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Linq; | ||
4 | using System.Net.Sockets; | ||
5 | using System.Text; | ||
6 | |||
7 | namespace OpenSim.Region.ClientStack.TCPJSONStream | ||
8 | { | ||
9 | public class DisconnectedEventArgs:EventArgs | ||
10 | { | ||
11 | public SocketError Error { get; private set; } | ||
12 | public DisconnectedEventArgs(SocketError err) | ||
13 | { | ||
14 | Error = err; | ||
15 | } | ||
16 | } | ||
17 | } | ||