diff options
author | fcolin | 2007-02-01 09:42:31 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 09:42:31 +0000 |
commit | ffda59ecb61770e3113507a1e62feecbe43b49c7 (patch) | |
tree | b2c9e0e6e0a937d44c0f1ba9ff96204011dd0454 /CSharp/Ivy | |
parent | 9a87eeb9a23d59f4571f815abfddbfde8f1ca158 (diff) | |
download | ivy-csharp-ffda59ecb61770e3113507a1e62feecbe43b49c7.zip ivy-csharp-ffda59ecb61770e3113507a1e62feecbe43b49c7.tar.gz ivy-csharp-ffda59ecb61770e3113507a1e62feecbe43b49c7.tar.bz2 ivy-csharp-ffda59ecb61770e3113507a1e62feecbe43b49c7.tar.xz |
Utilisateur : Fcolin Date : 16/01/04 Heure : 16:40 Archivé dans $/EScribe/Ivy Commentaire: (vss 17)
Diffstat (limited to 'CSharp/Ivy')
-rw-r--r-- | CSharp/Ivy/Ivy/Ivy.cs | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/CSharp/Ivy/Ivy/Ivy.cs b/CSharp/Ivy/Ivy/Ivy.cs index db0dfbb..7111157 100644 --- a/CSharp/Ivy/Ivy/Ivy.cs +++ b/CSharp/Ivy/Ivy/Ivy.cs @@ -90,15 +90,15 @@ namespace IvyBus }
}
- public String[] Classes
+ public String[] SentMessageClasses
{
get
{
- return messages_classes;
+ return sent_messageClasses;
}
set
{
- messages_classes = value;
+ sent_messageClasses = value;
}
}
@@ -121,7 +121,7 @@ namespace IvyBus private Hashtable callbacks;
private Hashtable clients_data;
private Hashtable clients;
- private String[] messages_classes = null;
+ private String[] sent_messageClasses = null;
private bool stopped = false;
internal int applicationPort; /* Application port number */
internal Hashtable regexp_out;
@@ -591,12 +591,12 @@ namespace IvyBus internal bool CheckRegexp(String exp)
{
bool regexp_ok = true;
- if (exp.StartsWith("^") && messages_classes != null)
+ if (exp.StartsWith("^") && sent_messageClasses != null)
{
regexp_ok = false;
- for (int i = 0; i < messages_classes.Length; i++)
+ for (int i = 0; i < sent_messageClasses.Length; i++)
{
- if (messages_classes[i].Equals(exp.Substring(1)))
+ if (sent_messageClasses[i].Equals(exp.Substring(1)))
return true;
}
}
|