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