10 references to StartJsonRpcServerCall
Aspire.Hosting.RemoteHost (9)
CodeGeneration\CodeGenerationService.cs (2)
54using var rpcActivity = _profilingTelemetry.StartJsonRpcServerCall(GetCapabilitiesMethodName); 233using var rpcActivity = _profilingTelemetry.StartJsonRpcServerCall(GenerateCodeMethodName);
Diagnostics\RemoteHostProfilingTelemetry.cs (1)
153var activity = StartJsonRpcServerCall("invokeCapability");
Language\LanguageService.cs (3)
48using var rpcActivity = _profilingTelemetry.StartJsonRpcServerCall(ScaffoldAppHostMethodName); 89using var rpcActivity = _profilingTelemetry.StartJsonRpcServerCall(DetectAppHostTypeMethodName); 128using var rpcActivity = _profilingTelemetry.StartJsonRpcServerCall(GetRuntimeSpecMethodName);
RemoteAppHostService.cs (3)
58using var activity = _profilingTelemetry.StartJsonRpcServerCall("authenticate"); 84using var activity = _profilingTelemetry.StartJsonRpcServerCall("ping"); 97using var activity = _profilingTelemetry.StartJsonRpcServerCall("cancelToken");
Aspire.Hosting.RemoteHost.Tests (1)
RemoteHostProfilingTelemetryTests.cs (1)
176using var activity = telemetry.StartJsonRpcServerCall("authenticate", streaming: false);