16 references to IpcMessage
Microsoft.Diagnostics.NETCore.Client (16)
DiagnosticsClient\DiagnosticsClient.cs (13)
715
return new
IpcMessage
(DiagnosticsServerCommandSet.Profiler, (byte)ProfilerCommandId.AttachProfiler, serializedConfiguration);
720
return new
IpcMessage
(DiagnosticsServerCommandSet.Process, (byte)ProcessCommandId.GetProcessEnvironment);
725
return new
IpcMessage
(DiagnosticsServerCommandSet.Process, (byte)ProcessCommandId.GetProcessInfo);
730
return new
IpcMessage
(DiagnosticsServerCommandSet.Process, (byte)ProcessCommandId.GetProcessInfo2);
735
return new
IpcMessage
(DiagnosticsServerCommandSet.Process, (byte)ProcessCommandId.GetProcessInfo3);
740
return new
IpcMessage
(DiagnosticsServerCommandSet.Process, (byte)ProcessCommandId.ResumeRuntime);
751
return new
IpcMessage
(DiagnosticsServerCommandSet.Process, (byte)ProcessCommandId.SetEnvironmentVariable, serializedConfiguration);
767
return new
IpcMessage
(DiagnosticsServerCommandSet.Profiler, (byte)ProfilerCommandId.StartupProfiler, serializedConfiguration);
786
return new
IpcMessage
(DiagnosticsServerCommandSet.Dump, (byte)DumpCommandId.GenerateCoreDump, payload);
805
return new
IpcMessage
(DiagnosticsServerCommandSet.Dump, (byte)command, payload);
817
return new
IpcMessage
(DiagnosticsServerCommandSet.Process, (byte)ProcessCommandId.ApplyStartupHook, serializedConfiguration);
823
return new
IpcMessage
(DiagnosticsServerCommandSet.Process, (byte)ProcessCommandId.EnablePerfMap, payload);
828
return new
IpcMessage
(DiagnosticsServerCommandSet.Process, (byte)ProcessCommandId.DisablePerfMap);
DiagnosticsClient\EventPipeSession.cs (2)
118
return new
IpcMessage
(DiagnosticsServerCommandSet.EventPipe, (byte)command, payload);
160
stopMessage = new
IpcMessage
(DiagnosticsServerCommandSet.EventPipe, (byte)EventPipeCommandId.StopTracing, payload);
DiagnosticsServerRouter\DiagnosticsServerRouterFactory.cs (1)
1410
IpcMessage message =
new
(DiagnosticsServerCommandSet.Process, (byte)ProcessCommandId.GetProcessInfo);