1 write to UnderlyingType
System.Xaml (1)
System\Xaml\Schema\TypeReflector.cs (1)
106UnderlyingType = underlyingType;
20 references to UnderlyingType
System.Xaml (20)
System\Xaml\Schema\TypeReflector.cs (20)
441Debug.Assert(UnderlyingType is not null, "Caller should check for UnderlyingType == null"); 453Debug.Assert(UnderlyingType is not null, "Caller should check for UnderlyingType == null"); 455EventInfo ei = UnderlyingType.GetEvent(name, AllProperties_BF); 467Debug.Assert(UnderlyingType is not null, "Caller should check for UnderlyingType == null"); 470PropertyInfo[] propList = UnderlyingType.GetProperties(AllProperties_BF); 471EventInfo[] eventList = UnderlyingType.GetEvents(AllProperties_BF); 480Debug.Assert(UnderlyingType is not null, "Caller should check for UnderlyingType == null"); 482PropertyInfo[] propList = UnderlyingType.GetProperties(AllProperties_BF); 606MemberInfo[] infos = UnderlyingType.GetMember(name, MemberTypes.Property, AllProperties_BF); 677|| (getters is not null && getters.Count > 0 && UnderlyingType.IsVisible && getters[0].IsPublic && !setters[0].IsPublic)) 708Debug.Assert(UnderlyingType is not null, "Caller should check for UnderlyingType == null"); 725Debug.Assert(UnderlyingType is not null, "Caller should check for UnderlyingType == null"); 742MethodInfo[] allMethods = UnderlyingType.GetMethods(AttachableProperties_BF); 744if (UnderlyingType.IsVisible) 781MemberInfo[] adders = UnderlyingType.GetMember(adderName, MemberTypes.Method, AttachableProperties_BF); 789MemberInfo[] getters = UnderlyingType.GetMember(KnownStrings.Get + name, MemberTypes.Method, AttachableProperties_BF); 797MemberInfo[] setters = UnderlyingType.GetMember(KnownStrings.Set + name, MemberTypes.Method, AttachableProperties_BF); 810if (UnderlyingType.IsVisible) 986Debug.Assert(UnderlyingType is not null, "Caller should check for UnderlyingType == null"); 1083get { return UnderlyingType; }