diff options
author | fcolin | 2007-02-01 09:43:46 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 09:43:46 +0000 |
commit | db7ef22b4a4b7572e318f0892f899279d8efdfde (patch) | |
tree | e6602a08dc076f85f00c45ccc759d2778574e37a | |
parent | 05fdaaae15ceff57a70c071a6570ee3592ca8740 (diff) | |
download | ivy-csharp-db7ef22b4a4b7572e318f0892f899279d8efdfde.zip ivy-csharp-db7ef22b4a4b7572e318f0892f899279d8efdfde.tar.gz ivy-csharp-db7ef22b4a4b7572e318f0892f899279d8efdfde.tar.bz2 ivy-csharp-db7ef22b4a4b7572e318f0892f899279d8efdfde.tar.xz |
Utilisateur : Fcolin Date : 9/02/06 Heure : 16:26 Archivé dans $/CSharp/Ivy/Ivy Commentaire: (vss 55)
-rw-r--r-- | CSharp/Ivy/Ivy/Ivy.cs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/CSharp/Ivy/Ivy/Ivy.cs b/CSharp/Ivy/Ivy/Ivy.cs index 6ddc0f4..ee55369 100644 --- a/CSharp/Ivy/Ivy/Ivy.cs +++ b/CSharp/Ivy/Ivy/Ivy.cs @@ -203,6 +203,20 @@ namespace IvyBus }
}
+
+ /// <summary>IsRunning is the bus Started and connected ?</summary>
+
+#if (!PocketPC)
+ [Browsable(false)]
+#endif
+ public bool IsRunning
+ {
+ get
+ {
+ return !stopped;
+ }
+
+ }
///<summary>SentMessageClasses the first word token of sent messages
///<remarks> optimise the parsing process when sending messages </remarks>
///</summary>
|