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