summaryrefslogtreecommitdiff
path: root/Ivy
diff options
context:
space:
mode:
authorfcolin2007-02-05 09:03:07 +0000
committerfcolin2007-02-05 09:03:07 +0000
commit9faf3708bd1188de84ccf33c400bfdceefc7fd1b (patch)
treebd3b20d16db7be4d3e52c1dc3903125a7403fa5f /Ivy
parent323d81860b443cac4d9367fa2efa8cae8028615f (diff)
downloadivy-csharp-9faf3708bd1188de84ccf33c400bfdceefc7fd1b.zip
ivy-csharp-9faf3708bd1188de84ccf33c400bfdceefc7fd1b.tar.gz
ivy-csharp-9faf3708bd1188de84ccf33c400bfdceefc7fd1b.tar.bz2
ivy-csharp-9faf3708bd1188de84ccf33c400bfdceefc7fd1b.tar.xz
maintenance SVN /sourceSafe
Diffstat (limited to 'Ivy')
-rw-r--r--Ivy/Ivy.cs18
1 files changed, 9 insertions, 9 deletions
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 */
- /// <summary>fires when a new client connect to the bus</summary>
+ [Description("Occurs when a new client connect to the bus")]
public event EventHandler<IvyEventArgs> ClientConnected;
- /// <summary>fires when a client discconnect from the bus</summary>
+ [Description("Occurs when a client discconnect from the bus")]
public event EventHandler<IvyEventArgs> ClientDisconnected;
- /// <summary>fires when a client receive a direct message from another client</summary>
+ [Description("Occurs when a client receive a direct message from another client")]
public event EventHandler<IvyEventArgs> DirectMessageReceived;
- /// <summary>fires when somebody ask for killing every client on the bus</summary>
+ [Description("Occurs when somebody ask for killing every client on the bus")]
public event EventHandler<IvyDieEventArgs> DieReceived;
- /// <summary>fires when a client receive a add binding from another client</summary>
+ [Description("Occurs when a client receive a add binding from another client")]
public event EventHandler<IvyEventArgs> BindingAdd;
- /// <summary>fires when a client receive a remove binding from another client</summary>
+ [Description("Occurs when a client receive a remove binding from another client")]
public event EventHandler<IvyEventArgs> BindingRemove;
- /// <summary>fires when a client receive a binding from another client and it as been filtered </summary>
+ [Description("Occurs when a client receive a binding from another client and it as been filtered ")]
public event EventHandler<IvyEventArgs> BindingFilter;
- /// <summary>fires when a client receive a remove binding from another client</summary>
+ [Description("Occurs when a client receive a remove binding from another client")]
public event EventHandler<IvyEventArgs> ErrorMessage;
#if (!PocketPC)
@@ -270,7 +270,7 @@ namespace IvyBus
private volatile Thread serverThread; // to ensure quick communication of the end
internal Dictionary<int, IvyApplicationBinding> bindings;
- //TODO should be remove samve as above
+ //TODO should be remove same as above
private List<IvyApplicationBinding> app_bindings;
private List<IvyClient> clients;
private List<string> sent_messageFilter;