10 references to IsSimpleType
Aspire.Hosting.RemoteHost (1)
Ats\AtsMarshaller.cs (1)
107return IsSimpleType(underlying);
Aspire.Hosting.RemoteHost.Tests (9)
AtsMarshallerTests.cs (9)
49Assert.True(AtsMarshaller.IsSimpleType(type)); 55Assert.True(AtsMarshaller.IsSimpleType(typeof(int?))); 56Assert.True(AtsMarshaller.IsSimpleType(typeof(bool?))); 57Assert.True(AtsMarshaller.IsSimpleType(typeof(DateTime?))); 63Assert.True(AtsMarshaller.IsSimpleType(typeof(TestEnum))); 69Assert.False(AtsMarshaller.IsSimpleType(typeof(object))); 70Assert.False(AtsMarshaller.IsSimpleType(typeof(List<int>))); 71Assert.False(AtsMarshaller.IsSimpleType(typeof(TestClass))); 296Assert.True(AtsMarshaller.IsSimpleType(type));