summaryrefslogtreecommitdiff
path: root/CSharp/Ivy/IvyPPC/IvyClient.cs
diff options
context:
space:
mode:
authorfcolin2007-02-01 09:59:01 +0000
committerfcolin2007-02-01 09:59:01 +0000
commitddab2b1511c7701672c139833821fbc5d9fce482 (patch)
tree0eeb73d386db67544b6debe40490605a8f9305cd /CSharp/Ivy/IvyPPC/IvyClient.cs
parentb62d8ca823296639763c2c37471290d0882e6fb1 (diff)
downloadivy-csharp-ddab2b1511c7701672c139833821fbc5d9fce482.zip
ivy-csharp-ddab2b1511c7701672c139833821fbc5d9fce482.tar.gz
ivy-csharp-ddab2b1511c7701672c139833821fbc5d9fce482.tar.bz2
ivy-csharp-ddab2b1511c7701672c139833821fbc5d9fce482.tar.xz
Utilisateur : Fcolin Date : 30/06/06 Heure : 16:43 Archivé dans $/CSharp/Ivy/IvyPPC Commentaire: (vss 50)
Diffstat (limited to 'CSharp/Ivy/IvyPPC/IvyClient.cs')
-rw-r--r--CSharp/Ivy/IvyPPC/IvyClient.cs10
1 files changed, 7 insertions, 3 deletions
diff --git a/CSharp/Ivy/IvyPPC/IvyClient.cs b/CSharp/Ivy/IvyPPC/IvyClient.cs
index 21f14f4..9a67b3d 100644
--- a/CSharp/Ivy/IvyPPC/IvyClient.cs
+++ b/CSharp/Ivy/IvyPPC/IvyClient.cs
@@ -40,12 +40,12 @@ namespace IvyBus
}
}
-
- public StringCollection Regexps
+
+ public List<string> Regexps
{
get
{
- StringCollection tab = new StringCollection();
+ List<string> tab = new List<string>();
lock (bindings)
{
foreach (IvyBindingBase bind in bindings.Values)
@@ -400,7 +400,11 @@ namespace IvyBus
bus.Stop();
close(false);
if (ev.ForceExit)
+#if (PocketPC)
+ System.Windows.Forms.Application.Exit();
+#else
System.Environment.Exit(0);
+#endif
}
void IvyProtocol.TokenBye(ushort err, string arg)
{