1 write to UnderlyingType
System.Xaml (1)
System\Xaml\Schema\TypeReflector.cs (1)
107UnderlyingType = underlyingType;
20 references to UnderlyingType
System.Xaml (20)
System\Xaml\Schema\TypeReflector.cs (20)
442Debug.Assert(UnderlyingType is not null, "Caller should check for UnderlyingType == null"); 454Debug.Assert(UnderlyingType is not null, "Caller should check for UnderlyingType == null"); 456EventInfo ei = UnderlyingType.GetEvent(name, AllProperties_BF); 468Debug.Assert(UnderlyingType is not null, "Caller should check for UnderlyingType == null"); 471PropertyInfo[] propList = UnderlyingType.GetProperties(AllProperties_BF); 472EventInfo[] eventList = UnderlyingType.GetEvents(AllProperties_BF); 481Debug.Assert(UnderlyingType is not null, "Caller should check for UnderlyingType == null"); 483PropertyInfo[] propList = UnderlyingType.GetProperties(AllProperties_BF); 607MemberInfo[] infos = UnderlyingType.GetMember(name, MemberTypes.Property, AllProperties_BF); 678|| (getters is not null && getters.Count > 0 && UnderlyingType.IsVisible && getters[0].IsPublic && !setters[0].IsPublic)) 709Debug.Assert(UnderlyingType is not null, "Caller should check for UnderlyingType == null"); 726Debug.Assert(UnderlyingType is not null, "Caller should check for UnderlyingType == null"); 743MethodInfo[] allMethods = UnderlyingType.GetMethods(AttachableProperties_BF); 745if (UnderlyingType.IsVisible) 782MemberInfo[] adders = UnderlyingType.GetMember(adderName, MemberTypes.Method, AttachableProperties_BF); 790MemberInfo[] getters = UnderlyingType.GetMember(KnownStrings.Get + name, MemberTypes.Method, AttachableProperties_BF); 798MemberInfo[] setters = UnderlyingType.GetMember(KnownStrings.Set + name, MemberTypes.Method, AttachableProperties_BF); 811if (UnderlyingType.IsVisible) 987Debug.Assert(UnderlyingType is not null, "Caller should check for UnderlyingType == null"); 1084get { return UnderlyingType; }