13 references to IsUnknown
PresentationFramework (1)
System\Windows\TemplateContent.cs (1)
1050return (member.IsUnknown && member.IsDirective && member.Name == "Freeze");
System.Xaml (12)
System\Xaml\InfosetObjects\DeferredWriter.cs (1)
147Debug.Assert(!property.IsDirective && !property.IsUnknown);
System\Xaml\InfosetObjects\XamlObjectWriter.cs (3)
580else if (property.IsUnknown) 1330if (property is not null && !property.IsUnknown && declaringType is not null) 1653if (parentProperty is not null && parentProperty.IsUnknown == false)
System\Xaml\Parser\XamlAttribute.cs (1)
53if (Property.IsUnknown)
System\Xaml\Parser\XamlPullParser.cs (1)
1081if (_context.CurrentMember is not null && _context.CurrentMember.IsUnknown)
System\Xaml\Parser\XamlScanner.cs (1)
770Debug.Assert(prop.IsUnknown);
System\Xaml\Schema\XamlDirective.cs (1)
159return base.IsUnknown;
System\Xaml\XamlMember.cs (2)
1024xamlMember1.IsUnknown == xamlMember2.IsUnknown;
System\Xaml\XamlType.cs (1)
690!contentWrapper.ContentProperty.IsUnknown)
System\Xaml\XamlXmlWriter.cs (1)
349containingXamlType = (enumerator.Current.Member is null) || enumerator.Current.Member.IsUnknown ? null : enumerator.Current.Member.Type;