1 implementation of Send
Microsoft.ML.Core (1)
Environment\HostEnvironmentBase.cs (1)
191public void Send(TMessage msg)
12 references to Send
Microsoft.ML.AutoML (1)
AutoMLExperiment\IMLContextManager.cs (1)
46_channel.Send(new ChannelMessage(e.Kind, MessageSensitivity.Unknown, e.Message));
Microsoft.ML.Core (1)
Data\ServerChannel.cs (1)
66pipe.Send(sc);
Microsoft.ML.Data (6)
Commands\DataCommand.cs (3)
123pipe.Send(TelemetryMessage.CreateTrainer(commandLineFactory.Name, commandLineFactory.GetSettingsString())); 125pipe.Send(TelemetryMessage.CreateTrainer("Unknown", "Non-ICommandLineComponentFactory object")); 148pipe.Send(TelemetryMessage.CreateMetric(pair.Key, pair.Value, null));
Utilities\TimerScope.cs (3)
55pipe.Send(TelemetryMessage.CreateMetric("TLC_RunTime", elapsedSeconds)); 56pipe.Send(TelemetryMessage.CreateMetric("TLC_PhysicalMemoryUsageInMB", physicalMemoryUsageInMB)); 57pipe.Send(TelemetryMessage.CreateMetric("TLC_VirtualMemoryUsageInMB", virtualMemoryUsageInMB));
Microsoft.ML.Maml (4)
MAML.cs (4)
114telemetryPipe.Send(TelemetryMessage.CreateCommand("ArgumentParsingFailure", args)); 122telemetryPipe.Send(TelemetryMessage.CreateCommand("UnknownCommand", settings)); 129telemetryPipe.Send(TelemetryMessage.CreateCommand(kind.ToUpperInvariant(), settings)); 166telemetryPipe.Send(TelemetryMessage.CreateException(e));