From 9faf3708bd1188de84ccf33c400bfdceefc7fd1b Mon Sep 17 00:00:00 2001 From: fcolin Date: Mon, 5 Feb 2007 09:03:07 +0000 Subject: maintenance SVN /sourceSafe --- Ivy/Ivy.cs | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'Ivy/Ivy.cs') diff --git a/Ivy/Ivy.cs b/Ivy/Ivy.cs index 1c38396..428da49 100644 --- a/Ivy/Ivy.cs +++ b/Ivy/Ivy.cs @@ -41,21 +41,21 @@ namespace IvyBus public class Ivy : System.ComponentModel.Component, ISupportInitialize { /* Event */ - /// fires when a new client connect to the bus + [Description("Occurs when a new client connect to the bus")] public event EventHandler ClientConnected; - /// fires when a client discconnect from the bus + [Description("Occurs when a client discconnect from the bus")] public event EventHandler ClientDisconnected; - /// fires when a client receive a direct message from another client + [Description("Occurs when a client receive a direct message from another client")] public event EventHandler DirectMessageReceived; - /// fires when somebody ask for killing every client on the bus + [Description("Occurs when somebody ask for killing every client on the bus")] public event EventHandler DieReceived; - /// fires when a client receive a add binding from another client + [Description("Occurs when a client receive a add binding from another client")] public event EventHandler BindingAdd; - /// fires when a client receive a remove binding from another client + [Description("Occurs when a client receive a remove binding from another client")] public event EventHandler BindingRemove; - /// fires when a client receive a binding from another client and it as been filtered + [Description("Occurs when a client receive a binding from another client and it as been filtered ")] public event EventHandler BindingFilter; - /// fires when a client receive a remove binding from another client + [Description("Occurs when a client receive a remove binding from another client")] public event EventHandler ErrorMessage; #if (!PocketPC) @@ -270,7 +270,7 @@ namespace IvyBus private volatile Thread serverThread; // to ensure quick communication of the end internal Dictionary bindings; - //TODO should be remove samve as above + //TODO should be remove same as above private List app_bindings; private List clients; private List sent_messageFilter; -- cgit v1.1