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