view Net/INetworkConnection.cs @ 89:9096f62d18c4

USBLib: allow to locate Windows Device Node for removed device
author Ivo Smits <Ivo@UCIS.nl>
date Wed, 12 Mar 2014 19:33:42 +0100
parents 3ab940a0c7a0
children
line wrap: on
line source

???using System;
using System.Net;

namespace UCIS.Net {
	public interface INetworkConnection {
		event EventHandler Closed;
		void Close();
		bool Connected { get; }
		ulong BytesWritten { get; }
		ulong BytesRead { get; }
		TimeSpan Age { get; }
		EndPoint RemoteEndPoint { get; }
		//Object Proxy { get; }
		Object Handler { get; }
	}
}