From c463b2d4b6614e01e7bad171581362ef41c0c9b2 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 8 Oct 2009 13:11:25 +0000 Subject: correction des bug connexion concurrente correction sur le ready message attente des deux endRegexp --- Ivy/IvyEventArgs.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Ivy/IvyEventArgs.cs') diff --git a/Ivy/IvyEventArgs.cs b/Ivy/IvyEventArgs.cs index 279f7c4..f9f6e73 100644 --- a/Ivy/IvyEventArgs.cs +++ b/Ivy/IvyEventArgs.cs @@ -41,7 +41,7 @@ namespace IvyBus /// /// Args of Ivy generated events /// - public IvyEventArgs(IvyClient app, int id, string arg) + internal IvyEventArgs(IvyClient app, int id, string arg) { this.client = app; this.id = id; @@ -69,7 +69,7 @@ namespace IvyBus /// /// Arg of the Die Event /// - public IvyDieEventArgs(IvyClient app, int id, string arg) + internal IvyDieEventArgs(IvyClient app, int id, string arg) : base(app, id, arg) { forceExit = true; @@ -100,7 +100,7 @@ namespace IvyBus /// /// Arg for the Normal Ivy Message received /// - public IvyMessageEventArgs(IvyClient app, int id, string[] args) + internal IvyMessageEventArgs(IvyClient app, int id, string[] args) : base( app, id, null) { this.arg_list = args; -- cgit v1.1