Mercurial > silverbladetech
view Messaging/Server/Listeners/IListener.cs @ 49:502f5f365649
Initial load for Silverlight Example Application
author | Steven Hollidge <stevenhollidge@hotmail.com> |
---|---|
date | Tue, 17 Apr 2012 17:57:52 +0100 |
parents | 7d9de5746f18 |
children |
line wrap: on
line source
namespace Server.Listeners { public interface IListener { bool IsListening { get; set; } void Start(); void Stop(); } }