comparison Net/INetworkConnection.cs @ 0:3ab940a0c7a0

Initial commit
author Ivo Smits <Ivo@UCIS.nl>
date Tue, 11 Sep 2012 16:28:53 +0200
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:3ab940a0c7a0
1 using System;
2 using System.Net;
3
4 namespace UCIS.Net {
5 public interface INetworkConnection {
6 event EventHandler Closed;
7 void Close();
8 bool Connected { get; }
9 ulong BytesWritten { get; }
10 ulong BytesRead { get; }
11 TimeSpan Age { get; }
12 EndPoint RemoteEndPoint { get; }
13 //Object Proxy { get; }
14 Object Handler { get; }
15 }
16 }