6 instantiations of TestCallbackDto
Aspire.Hosting.RemoteHost.Tests (6)
12 references to TestCallbackDto
Aspire.Hosting.RemoteHost.Tests (12)
CallbackProxyTests.cs (12)
275var dto = new TestCallbackDto { Name = "original", Count = 0 };
298var dto = new TestCallbackDto { Name = "original", Count = 0 };
323var dto = new TestCallbackDto { Name = "original", Count = 0 };
346var dto = new TestCallbackDto { Name = "original", Count = 0 };
364var dto1 = new TestCallbackDto { Name = "first", Count = 1 };
365var dto2 = new TestCallbackDto { Name = "second", Count = 2 };
394new() { TypeId = "test/TestCallbackDto", Name = "TestCallbackDto", ClrType = typeof(TestCallbackDto), Properties = [] }
421public delegate void TestSyncVoidCallbackWithDto(TestCallbackDto dto);
423public delegate Task TestAsyncVoidCallbackWithDto(TestCallbackDto dto);
425public delegate void TestSyncVoidCallbackWithMixedArgs(string label, TestCallbackDto dto);
427public delegate void TestSyncVoidCallbackWithMultipleDtos(TestCallbackDto dto1, TestCallbackDto dto2);