1 instantiation of CustomType
System.Reflection.Context (1)
System\Reflection\Context\CustomReflectionContext.Projector.cs (1)
57return new CustomType(value, ReflectionContext);
18 references to CustomType
System.Reflection.Context (18)
System\Reflection\Context\Custom\AttributeUtils.cs (4)
11public static object[] GetCustomAttributes(CustomReflectionContext context, CustomType type, Type attributeFilterType, bool inherit) 18CustomType? baseMember = type.BaseType as CustomType; 45baseMember = type.BaseType as CustomType;
System\Reflection\Context\Custom\CustomType.cs (11)
68CustomType? baseType = BaseType as CustomType; 78baseType = baseType.BaseType as CustomType; 115CustomType? type = this; 124while ((type = type.BaseType as CustomType) != null) 166CustomType? baseType = BaseType as CustomType; 177baseType = baseType.BaseType as CustomType; 238CustomType? baseType = BaseType as CustomType; 256baseType = baseType.BaseType as CustomType;
System\Reflection\Context\CustomReflectionContext.cs (1)
108internal IEnumerable<PropertyInfo> GetNewPropertiesForType(CustomType type)
System\Reflection\Context\Virtual\VirtualPropertyInfo.cs (2)
31CustomType? rcType = propertyType as CustomType;