3 implementations of ICallbackInvoker
Aspire.Hosting.RemoteHost (1)
JsonRpcCallbackInvoker.cs (1)
12
internal sealed class JsonRpcCallbackInvoker :
ICallbackInvoker
Aspire.Hosting.RemoteHost.Tests (2)
CallbackProxyTests.cs (1)
445
internal sealed class TestCallbackInvoker :
ICallbackInvoker
CapabilityDispatcherTests.cs (1)
2134
internal sealed class TestSynchronizationContextCallbackInvoker :
ICallbackInvoker
6 references to ICallbackInvoker
Aspire.Hosting.RemoteHost (3)
Ats\AtsCallbackProxyFactory.cs (2)
18
private readonly
ICallbackInvoker
_invoker;
32
ICallbackInvoker
invoker,
RemoteHostServer.cs (1)
94
services.AddScoped<
ICallbackInvoker
>(sp => sp.GetRequiredService<JsonRpcCallbackInvoker>());
Aspire.Hosting.RemoteHost.Tests (3)
CallbackProxyTests.cs (1)
387
private static AtsCallbackProxyFactory CreateFactory(
ICallbackInvoker
? invoker = null, bool registerDtoTypes = false, IReadOnlyList<AtsTypeInfo>? handleTypes = null)
CapabilityDispatcherTests.cs (1)
2120
ICallbackInvoker
invoker)
JsonRpcAuthenticationTests.cs (1)
177
services.AddScoped<
ICallbackInvoker
>(sp => sp.GetRequiredService<JsonRpcCallbackInvoker>());