summaryrefslogtreecommitdiff
path: root/CSharp
diff options
context:
space:
mode:
authorfcolin2007-02-01 10:00:48 +0000
committerfcolin2007-02-01 10:00:48 +0000
commit775a569834eed1e55775ba3855e26ebfffa407ca (patch)
tree7c369123a6b6eb71df2717863c9be6a441af7807 /CSharp
parent9142c1442ef105aabcd5205014dfa95373bd6b44 (diff)
downloadivy-csharp-775a569834eed1e55775ba3855e26ebfffa407ca.zip
ivy-csharp-775a569834eed1e55775ba3855e26ebfffa407ca.tar.gz
ivy-csharp-775a569834eed1e55775ba3855e26ebfffa407ca.tar.bz2
ivy-csharp-775a569834eed1e55775ba3855e26ebfffa407ca.tar.xz
Utilisateur : Fcolin Date : 2/06/06 Heure : 16:47 Créé Commentaire: Mise en conformite du code avec les guidelines , et changement prototype evenements (vss 1)
Diffstat (limited to 'CSharp')
-rw-r--r--CSharp/Ivy/IvyPPC/IvyEventArgs.cs81
1 files changed, 81 insertions, 0 deletions
diff --git a/CSharp/Ivy/IvyPPC/IvyEventArgs.cs b/CSharp/Ivy/IvyPPC/IvyEventArgs.cs
new file mode 100644
index 0000000..a4f033a
--- /dev/null
+++ b/CSharp/Ivy/IvyPPC/IvyEventArgs.cs
@@ -0,0 +1,81 @@
+using System;
+using System.Collections.Specialized;
+using System.Text;
+
+namespace IvyBus
+{
+ /// <summary> The EventArgs Classes
+ /// </summary>
+ ///
+ public class IvyEventArgs : EventArgs
+ {
+ private IvyClient client;
+ private int id;
+ private string arg;
+
+ public IvyClient Client
+ {
+ get { return client; }
+ }
+
+ public int Id
+ {
+ get { return id; }
+ }
+
+ public string Argument
+ {
+ get { return arg; }
+ }
+ public IvyEventArgs(IvyClient app, int id, string arg)
+ {
+ this.client = app;
+ this.id = id;
+ this.arg = arg;
+ }
+ }
+ public class IvyDieEventArgs : IvyEventArgs
+ {
+ /* return value for Die Event */
+ private bool forceExit;
+
+ public bool ForceExit
+ {
+ get { return forceExit; }
+ set { forceExit = value; }
+ }
+ public IvyDieEventArgs(IvyClient app, int id, string arg)
+ : base(app, id, arg)
+ {
+ forceExit = true;
+ }
+ }
+ public class IvyMessageEventArgs : EventArgs
+ {
+ private IvyClient cleint;
+ private int id;
+ private StringCollection args;
+
+ public IvyClient Client
+ {
+ get { return cleint; }
+ }
+
+ public int Id
+ {
+ get { return id; }
+ }
+
+ public StringCollection Arguments
+ {
+ get { return args; }
+ }
+ public IvyMessageEventArgs(IvyClient app, int id, string[] args)
+ {
+ this.cleint = app;
+ this.id = id;
+ this.args = new StringCollection();
+ this.args.AddRange(args);
+ }
+ }
+}