From 3c9d0c18a19de1f1ec1c4e77f6b89fdf84d39605 Mon Sep 17 00:00:00 2001 From: fcolin Date: Fri, 10 Oct 2008 15:45:54 +0000 Subject: Ajout de commentaire sur les menbres public --- IvyProbeConsole/IvyProbeConsole.cs | 7 ++++--- IvyProbeConsole/IvyProbeConsole.csproj | 7 ++++--- IvyProbeConsole/Properties/Settings.Designer.cs | 10 +++++----- 3 files changed, 13 insertions(+), 11 deletions(-) (limited to 'IvyProbeConsole') diff --git a/IvyProbeConsole/IvyProbeConsole.cs b/IvyProbeConsole/IvyProbeConsole.cs index 516d702..72d4434 100644 --- a/IvyProbeConsole/IvyProbeConsole.cs +++ b/IvyProbeConsole/IvyProbeConsole.cs @@ -15,6 +15,7 @@ namespace IvyProbeConsole using System.Diagnostics; using IvyBus; using Gnu; + using System.Collections.ObjectModel; /// Console implementation of the ivyprobe test program. /// @@ -164,7 +165,7 @@ namespace IvyProbeConsole } if (!quiet) - System.Console.Out.WriteLine(Ivy.Domains(domain)); + System.Console.Out.WriteLine("broadcasting on " + Ivy.GetDomain(domain)); bus.Start(domain); @@ -273,7 +274,7 @@ namespace IvyProbeConsole target = result.Groups["target"].Value; ushort id = ushort.Parse(result.Groups["id"].Value); string message = result.Groups["message"].Value; - List v = bus.GetClientsByName(target); + ReadOnlyCollection v = bus.GetClientsByName(target); if (v.Count == 0) println("no Ivy client with the name \"" + target + "\""); for (int i = 0; i < v.Count; i++) @@ -352,7 +353,7 @@ namespace IvyProbeConsole private void receive(object sender, IvyMessageEventArgs e) { String s = e.Client.ApplicationName + " sent "; - s += string.Join(",", e.Arguments); + s += string.Join(",", e.GetArguments()); println(s); } [Conditional("DEBUG")] diff --git a/IvyProbeConsole/IvyProbeConsole.csproj b/IvyProbeConsole/IvyProbeConsole.csproj index c45b9e8..590e9e8 100644 --- a/IvyProbeConsole/IvyProbeConsole.csproj +++ b/IvyProbeConsole/IvyProbeConsole.csproj @@ -1,7 +1,7 @@ - + Local - 8.0.50727 + 9.0.30729 2.0 {19023DE7-AAD8-4EC4-8FAF-D793868F8861} SAK @@ -48,6 +48,8 @@ http://www.tls.cena.fr/~fcolin/ClickOnce/IvyProbeConsole/ 1.0.0.%2a true + 2.0 + 3 bin\Debug\ @@ -131,7 +133,6 @@ - SettingsSingleFileGenerator diff --git a/IvyProbeConsole/Properties/Settings.Designer.cs b/IvyProbeConsole/Properties/Settings.Designer.cs index 4d05e34..11b290c 100644 --- a/IvyProbeConsole/Properties/Settings.Designer.cs +++ b/IvyProbeConsole/Properties/Settings.Designer.cs @@ -1,10 +1,10 @@ //------------------------------------------------------------------------------ // -// This code was generated by a tool. -// Runtime Version:2.0.50727.42 +// Ce code a été généré par un outil. +// Version du runtime :2.0.50727.1433 // -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. +// Les modifications apportées à ce fichier peuvent provoquer un comportement incorrect et seront perdues si +// le code est régénéré. // //------------------------------------------------------------------------------ @@ -12,7 +12,7 @@ namespace IvyProbeConsole.Properties { [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "8.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "9.0.0.0")] internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); -- cgit v1.1