12 references to IsKnownType
System.Data.Services.Client (12)
System\Data\Services\Client\ALinq\ExpressionWriter.cs (1)
487if (ClientConvert.IsKnownType(type))
System\Data\Services\Client\ALinq\ProjectionAnalyzer.cs (2)
360if (ClientConvert.IsKnownType(sourceType) && ClientConvert.IsKnownType(targetType))
System\Data\Services\Client\AtomMaterializer.cs (4)
990if (ClientConvert.IsKnownType(underlyingExpectedType)) 1211bool knownType = ClientConvert.IsKnownType(underlyingType); 1216knownType = ClientConvert.IsKnownType(nestedElementType.ElementType); 1316ClientConvert.IsKnownType(MaterializeAtom.GetEntryClientType(property.TypeName, context, prop.PropertyType, true).ElementType))
System\Data\Services\Client\ClientConvert.cs (1)
383return IsKnownType(Nullable.GetUnderlyingType(type) ?? type);
System\Data\Services\Client\ClientType.cs (3)
89if (!ClientConvert.IsKnownType(this.ElementType)) 170if (!ClientConvert.IsKnownType(ptype)) 894this.IsKnownType = ClientConvert.IsKnownType(propertyType);
System\Data\Services\Client\DataServiceRequestOfT.cs (1)
43elementType = ClientConvert.IsKnownType(elementType) ? elementType : TypeSystem.GetElementType(elementType);