10 references to IsSimpleType
Aspire.Hosting.RemoteHost.Tests (9)
AtsMarshallerTests.cs (9)
52Assert.True(AtsMarshaller.IsSimpleType(type)); 58Assert.True(AtsMarshaller.IsSimpleType(typeof(int?))); 59Assert.True(AtsMarshaller.IsSimpleType(typeof(bool?))); 60Assert.True(AtsMarshaller.IsSimpleType(typeof(DateTime?))); 66Assert.True(AtsMarshaller.IsSimpleType(typeof(TestEnum))); 72Assert.False(AtsMarshaller.IsSimpleType(typeof(object))); 73Assert.False(AtsMarshaller.IsSimpleType(typeof(List<int>))); 74Assert.False(AtsMarshaller.IsSimpleType(typeof(TestClass))); 299Assert.True(AtsMarshaller.IsSimpleType(type));
aspire-server (1)
Ats\AtsMarshaller.cs (1)
109return IsSimpleType(underlying);