diff options
author | fcolin | 2007-02-01 09:55:46 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 09:55:46 +0000 |
commit | 3a693fd2a671dd59ae50dbac565eab92ba15988d (patch) | |
tree | ce0fbb940a962f0e9400737a3868f609d2ef7bbc /CSharp | |
parent | a9dd85dff37fdaaa9995658acf0b8e9e455ddb86 (diff) | |
download | ivy-csharp-3a693fd2a671dd59ae50dbac565eab92ba15988d.zip ivy-csharp-3a693fd2a671dd59ae50dbac565eab92ba15988d.tar.gz ivy-csharp-3a693fd2a671dd59ae50dbac565eab92ba15988d.tar.bz2 ivy-csharp-3a693fd2a671dd59ae50dbac565eab92ba15988d.tar.xz |
Utilisateur : Fcolin Date : 9/02/06 Heure : 16:26 Archivé dans $/CSharp/Ivy/Ivy Commentaire: (vss 55)
Diffstat (limited to 'CSharp')
-rw-r--r-- | CSharp/Ivy/IvyPPC/Ivy.cs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/CSharp/Ivy/IvyPPC/Ivy.cs b/CSharp/Ivy/IvyPPC/Ivy.cs index 6ddc0f4..ee55369 100644 --- a/CSharp/Ivy/IvyPPC/Ivy.cs +++ b/CSharp/Ivy/IvyPPC/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>
|