summaryrefslogtreecommitdiff
path: root/CSharp/Ivy/IvyPPC/Ivy.cs
diff options
context:
space:
mode:
authorfcolin2007-02-01 09:54:30 +0000
committerfcolin2007-02-01 09:54:30 +0000
commit6d40bd06e95c0a745a378c20ba71069e563b37f3 (patch)
treeea168c2d82e10c02f2747a0023d42986ce81aac0 /CSharp/Ivy/IvyPPC/Ivy.cs
parent224378a496fa1146965c8afb7a14c2a72674137b (diff)
downloadivy-csharp-6d40bd06e95c0a745a378c20ba71069e563b37f3.zip
ivy-csharp-6d40bd06e95c0a745a378c20ba71069e563b37f3.tar.gz
ivy-csharp-6d40bd06e95c0a745a378c20ba71069e563b37f3.tar.bz2
ivy-csharp-6d40bd06e95c0a745a378c20ba71069e563b37f3.tar.xz
Utilisateur : Fcolin Date : 16/01/04 Heure : 16:40 Archivé dans $/EScribe/Ivy Commentaire: (vss 17)
Diffstat (limited to 'CSharp/Ivy/IvyPPC/Ivy.cs')
-rw-r--r--CSharp/Ivy/IvyPPC/Ivy.cs14
1 files changed, 7 insertions, 7 deletions
diff --git a/CSharp/Ivy/IvyPPC/Ivy.cs b/CSharp/Ivy/IvyPPC/Ivy.cs
index db0dfbb..7111157 100644
--- a/CSharp/Ivy/IvyPPC/Ivy.cs
+++ b/CSharp/Ivy/IvyPPC/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;
}
}