1 write to UnderlyingType
System.Xaml (1)
System\Xaml\Schema\TypeReflector.cs (1)
103UnderlyingType = underlyingType;
20 references to UnderlyingType
System.Xaml (20)
System\Xaml\Schema\TypeReflector.cs (20)
426Debug.Assert(UnderlyingType is not null, "Caller should check for UnderlyingType == null"); 437Debug.Assert(UnderlyingType is not null, "Caller should check for UnderlyingType == null"); 439EventInfo ei = UnderlyingType.GetEvent(name, AllProperties_BF); 450Debug.Assert(UnderlyingType is not null, "Caller should check for UnderlyingType == null"); 453PropertyInfo[] propList = UnderlyingType.GetProperties(AllProperties_BF); 454EventInfo[] eventList = UnderlyingType.GetEvents(AllProperties_BF); 463Debug.Assert(UnderlyingType is not null, "Caller should check for UnderlyingType == null"); 465PropertyInfo[] propList = UnderlyingType.GetProperties(AllProperties_BF); 584MemberInfo[] infos = UnderlyingType.GetMember(name, MemberTypes.Property, AllProperties_BF); 653|| (getters is not null && getters.Count > 0 && UnderlyingType.IsVisible && getters[0].IsPublic && !setters[0].IsPublic)) 683Debug.Assert(UnderlyingType is not null, "Caller should check for UnderlyingType == null"); 700Debug.Assert(UnderlyingType is not null, "Caller should check for UnderlyingType == null"); 716MethodInfo[] allMethods = UnderlyingType.GetMethods(AttachableProperties_BF); 718if (UnderlyingType.IsVisible) 755MemberInfo[] adders = UnderlyingType.GetMember(adderName, MemberTypes.Method, AttachableProperties_BF); 763MemberInfo[] getters = UnderlyingType.GetMember(KnownStrings.Get + name, MemberTypes.Method, AttachableProperties_BF); 771MemberInfo[] setters = UnderlyingType.GetMember(KnownStrings.Set + name, MemberTypes.Method, AttachableProperties_BF); 784if (UnderlyingType.IsVisible) 950Debug.Assert(UnderlyingType is not null, "Caller should check for UnderlyingType == null"); 1044get { return UnderlyingType; }