6 instantiations of TestCallbackDto
Aspire.Hosting.RemoteHost.Tests (6)
12 references to TestCallbackDto
Aspire.Hosting.RemoteHost.Tests (12)
CallbackProxyTests.cs (12)
229var dto = new TestCallbackDto { Name = "original", Count = 0 };
252var dto = new TestCallbackDto { Name = "original", Count = 0 };
277var dto = new TestCallbackDto { Name = "original", Count = 0 };
300var dto = new TestCallbackDto { Name = "original", Count = 0 };
318var dto1 = new TestCallbackDto { Name = "first", Count = 1 };
319var dto2 = new TestCallbackDto { Name = "second", Count = 2 };
348new() { TypeId = "test/TestCallbackDto", Name = "TestCallbackDto", ClrType = typeof(TestCallbackDto), Properties = [] }
371public delegate void TestSyncVoidCallbackWithDto(TestCallbackDto dto);
373public delegate Task TestAsyncVoidCallbackWithDto(TestCallbackDto dto);
375public delegate void TestSyncVoidCallbackWithMixedArgs(string label, TestCallbackDto dto);
377public delegate void TestSyncVoidCallbackWithMultipleDtos(TestCallbackDto dto1, TestCallbackDto dto2);