10 references to IsSimpleType
Aspire.Hosting.RemoteHost (1)
Ats\AtsMarshaller.cs (1)
124return IsSimpleType(underlying);
Aspire.Hosting.RemoteHost.Tests (9)
AtsMarshallerTests.cs (9)
94Assert.True(AtsMarshaller.IsSimpleType(type)); 100Assert.True(AtsMarshaller.IsSimpleType(typeof(int?))); 101Assert.True(AtsMarshaller.IsSimpleType(typeof(bool?))); 102Assert.True(AtsMarshaller.IsSimpleType(typeof(DateTime?))); 108Assert.True(AtsMarshaller.IsSimpleType(typeof(TestEnum))); 114Assert.False(AtsMarshaller.IsSimpleType(typeof(object))); 115Assert.False(AtsMarshaller.IsSimpleType(typeof(List<int>))); 116Assert.False(AtsMarshaller.IsSimpleType(typeof(TestClass))); 448Assert.True(AtsMarshaller.IsSimpleType(type));