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)
66CustomType? baseType = BaseType as CustomType; 76baseType = baseType.BaseType as CustomType; 113CustomType? type = this; 122while ((type = type.BaseType as CustomType) != null) 164CustomType? baseType = BaseType as CustomType; 175baseType = baseType.BaseType as CustomType; 236CustomType? baseType = BaseType as CustomType; 254baseType = baseType.BaseType as CustomType;
System\Reflection\Context\CustomReflectionContext.cs (1)
99internal IEnumerable<PropertyInfo> GetNewPropertiesForType(CustomType type)
System\Reflection\Context\Virtual\VirtualPropertyInfo.cs (2)
31CustomType? rcType = propertyType as CustomType;