From: nschoemaker <nsc...@xp...> - 2005-01-31 22:42:16
|
Hi Carlos, thx for your quick reply's :) > Next time i should review that first :P, if it doesn't have the Verbose > property is because it doesn't have output. > > Huummm The ServiceOutput event is in the base class but not all the > Services have output, > i should think on something to avoid confusions with this. Yes i agree ;-) Maybe removing the event from the baseclass and expose the ServiceOutput functionality through an interface ? (ie, IServiceOutput) In the help file under the FbValidation class i noticed this example and assumed in the 1.7 version this code was replaced by the ServiceOutput event: validationSvc.Start(); string lineOutput; while((lineOutput = validationSvc.GetNextLine()) != null) { Console.WriteLine(lineOutput); } hth, Nico Schoemaker. |