10 references to IsSimpleType
Aspire.Hosting.RemoteHost (1)
Ats\AtsMarshaller.cs (1)
118return IsSimpleType(underlying);
Aspire.Hosting.RemoteHost.Tests (9)
AtsMarshallerTests.cs (9)
61Assert.True(AtsMarshaller.IsSimpleType(type)); 67Assert.True(AtsMarshaller.IsSimpleType(typeof(int?))); 68Assert.True(AtsMarshaller.IsSimpleType(typeof(bool?))); 69Assert.True(AtsMarshaller.IsSimpleType(typeof(DateTime?))); 75Assert.True(AtsMarshaller.IsSimpleType(typeof(TestEnum))); 81Assert.False(AtsMarshaller.IsSimpleType(typeof(object))); 82Assert.False(AtsMarshaller.IsSimpleType(typeof(List<int>))); 83Assert.False(AtsMarshaller.IsSimpleType(typeof(TestClass))); 356Assert.True(AtsMarshaller.IsSimpleType(type));