1 write to UnderlyingType
System.Xaml (1)
System\Xaml\Schema\TypeReflector.cs (1)
105UnderlyingType = underlyingType;
20 references to UnderlyingType
System.Xaml (20)
System\Xaml\Schema\TypeReflector.cs (20)
428Debug.Assert(UnderlyingType != null, "Caller should check for UnderlyingType == null"); 439Debug.Assert(UnderlyingType != null, "Caller should check for UnderlyingType == null"); 441EventInfo ei = UnderlyingType.GetEvent(name, AllProperties_BF); 452Debug.Assert(UnderlyingType != null, "Caller should check for UnderlyingType == null"); 455PropertyInfo[] propList = UnderlyingType.GetProperties(AllProperties_BF); 456EventInfo[] eventList = UnderlyingType.GetEvents(AllProperties_BF); 465Debug.Assert(UnderlyingType != null, "Caller should check for UnderlyingType == null"); 467PropertyInfo[] propList = UnderlyingType.GetProperties(AllProperties_BF); 586MemberInfo[] infos = UnderlyingType.GetMember(name, MemberTypes.Property, AllProperties_BF); 655|| (getters != null && getters.Count > 0 && UnderlyingType.IsVisible && getters[0].IsPublic && !setters[0].IsPublic)) 685Debug.Assert(UnderlyingType != null, "Caller should check for UnderlyingType == null"); 702Debug.Assert(UnderlyingType != null, "Caller should check for UnderlyingType == null"); 718MethodInfo[] allMethods = UnderlyingType.GetMethods(AttachableProperties_BF); 720if (UnderlyingType.IsVisible) 757MemberInfo[] adders = UnderlyingType.GetMember(adderName, MemberTypes.Method, AttachableProperties_BF); 765MemberInfo[] getters = UnderlyingType.GetMember(KnownStrings.Get + name, MemberTypes.Method, AttachableProperties_BF); 773MemberInfo[] setters = UnderlyingType.GetMember(KnownStrings.Set + name, MemberTypes.Method, AttachableProperties_BF); 786if (UnderlyingType.IsVisible) 952Debug.Assert(UnderlyingType != null, "Caller should check for UnderlyingType == null"); 1046get { return UnderlyingType; }