annotate Net/INetworkConnection.cs @ 81:3352f89cf6f5
FBGUI ContainerControl fixes (client area, keyboard capture)
author |
Ivo Smits <Ivo@UCIS.nl> |
date |
Sun, 23 Feb 2014 16:56:42 +0100 |
parents |
3ab940a0c7a0 |
children |
|
rev |
line source |
0
|
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 } |