diff options
author | fcolin | 2007-02-01 10:06:38 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 10:06:38 +0000 |
commit | b7b431b1310c950ad28bba11e0fd7136a8c447b9 (patch) | |
tree | b35f6c2be62c59690b75d397e26256bd9f760651 /CSharp/Ivy/IvyProbe | |
parent | c2e0a7e2da7eae729487e06bacde122c3fc4784a (diff) | |
download | ivy-csharp-b7b431b1310c950ad28bba11e0fd7136a8c447b9.zip ivy-csharp-b7b431b1310c950ad28bba11e0fd7136a8c447b9.tar.gz ivy-csharp-b7b431b1310c950ad28bba11e0fd7136a8c447b9.tar.bz2 ivy-csharp-b7b431b1310c950ad28bba11e0fd7136a8c447b9.tar.xz |
Utilisateur : Fcolin Date : 30/06/06 Heure : 13:40 Archivé dans $/CSharp/Ivy/IvyProbe Commentaire: gestion designer (vss 24)
Diffstat (limited to 'CSharp/Ivy/IvyProbe')
-rw-r--r-- | CSharp/Ivy/IvyProbe/IvyProbe.cs | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/CSharp/Ivy/IvyProbe/IvyProbe.cs b/CSharp/Ivy/IvyProbe/IvyProbe.cs index 4d48607..86c6c9b 100644 --- a/CSharp/Ivy/IvyProbe/IvyProbe.cs +++ b/CSharp/Ivy/IvyProbe/IvyProbe.cs @@ -37,6 +37,10 @@ namespace IvyProbe private void die(object sender, IvyDieEventArgs e)
{
append("receive die from " + e.Client.ApplicationName + " cause: " + e.Argument);
+ }
+ private void directMessage(object sender, IvyEventArgs e)
+ {
+ append(e.Client.ApplicationName + " direct Message " + e.Id + e.Argument);
}
private void receive(object sender, IvyMessageEventArgs e)
{
@@ -47,13 +51,9 @@ namespace IvyProbe receive_str += string.Join(",", args);
receive_str += "]";
+ receive_str += " for '" + ((IvyApplicationBinding)sender).FormatedExpression + "'";
append(receive_str);
}
- private void directMessage(object sender, IvyEventArgs e)
- {
- append(e.Client.ApplicationName + " direct Message " + e.Id + e.Argument);
- }
-
public void RegexpCB(System.Object event_sender, System.EventArgs e)
{
// ajoute la nouvelle regex
@@ -161,7 +161,8 @@ namespace IvyProbe private void ivyprobe(object sender, IvyMessageEventArgs e)
{
-
+ // just for testing of Desin Bindings
+ receive(sender, e);
}
|