11 references to StartJsonRpcServerCall
Aspire.Hosting.RemoteHost (10)
CodeGeneration\CodeGenerationService.cs (3)
57using var rpcActivity = _profilingTelemetry.StartJsonRpcServerCall(GetCapabilitiesMethodName); 237using var rpcActivity = _profilingTelemetry.StartJsonRpcServerCall(GenerateCodeMethodName); 296using var rpcActivity = _profilingTelemetry.StartJsonRpcServerCall(ExportApiMethodName);
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);