6 instantiations of TestCallbackDto
Aspire.Hosting.RemoteHost.Tests (6)
12 references to TestCallbackDto
Aspire.Hosting.RemoteHost.Tests (12)
CallbackProxyTests.cs (12)
250var dto = new TestCallbackDto { Name = "original", Count = 0 };
273var dto = new TestCallbackDto { Name = "original", Count = 0 };
298var dto = new TestCallbackDto { Name = "original", Count = 0 };
321var dto = new TestCallbackDto { Name = "original", Count = 0 };
339var dto1 = new TestCallbackDto { Name = "first", Count = 1 };
340var dto2 = new TestCallbackDto { Name = "second", Count = 2 };
369new() { TypeId = "test/TestCallbackDto", Name = "TestCallbackDto", ClrType = typeof(TestCallbackDto), Properties = [] }
394public delegate void TestSyncVoidCallbackWithDto(TestCallbackDto dto);
396public delegate Task TestAsyncVoidCallbackWithDto(TestCallbackDto dto);
398public delegate void TestSyncVoidCallbackWithMixedArgs(string label, TestCallbackDto dto);
400public delegate void TestSyncVoidCallbackWithMultipleDtos(TestCallbackDto dto1, TestCallbackDto dto2);