14 references to UnderlyingType
System.Reflection.Context (14)
System\Reflection\Context\Custom\AttributeUtils.cs (2)
13
IEnumerable<object> attributes = GetFilteredAttributes(context, type.
UnderlyingType
, attributeFilterType);
42
IEnumerable<object> inheritedAttributes = GetFilteredAttributes(context, type.
UnderlyingType
, attributeFilterType);
System\Reflection\Context\CustomReflectionContext.cs (1)
115
IEnumerable<PropertyInfo> newProperties = AddProperties(type.
UnderlyingType
);
System\Reflection\Context\Delegation\DelegatingType.cs (1)
167
get { return
UnderlyingType
; }
System\Reflection\Context\Projection\ProjectingType.cs (9)
144
return
UnderlyingType
.IsAssignableFrom(otherType.
UnderlyingType
);
160
return
UnderlyingType
.IsEquivalentTo(otherType.
UnderlyingType
);
179
return
UnderlyingType
.IsSubclassOf(otherType.
UnderlyingType
);
327
UnderlyingType
.Equals(other.
UnderlyingType
);
332
return Projector.GetHashCode() ^
UnderlyingType
.GetHashCode();
System\Reflection\Context\Projection\Projector.cs (1)
100
return projectingType.
UnderlyingType
;