protected void SendTelemetryComponent(IPipe <TelemetryMessage> pipe, SubComponent sub) { Host.AssertValue(pipe); Host.AssertValueOrNull(sub); if (sub.IsGood()) { pipe.Send(TelemetryMessage.CreateTrainer(sub.Kind, sub.SubComponentSettings)); } }
protected void SendTelemetryComponent(IPipe <TelemetryMessage> pipe, IComponentFactory factory) { Host.AssertValue(pipe); Host.AssertValueOrNull(factory); if (factory is ICommandLineComponentFactory commandLineFactory) { pipe.Send(TelemetryMessage.CreateTrainer(commandLineFactory.Name, commandLineFactory.GetSettingsString())); } else { pipe.Send(TelemetryMessage.CreateTrainer("Unknown", "Non-ICommandLineComponentFactory object")); } }