17 references to IsUnknown
PresentationFramework (1)
System\Windows\TemplateContent.cs (1)
1043return (member.IsUnknown && member.IsDirective && member.Name == "Freeze");
System.Xaml (12)
System\Xaml\InfosetObjects\DeferredWriter.cs (1)
148Debug.Assert(!property.IsDirective && !property.IsUnknown);
System\Xaml\InfosetObjects\XamlObjectWriter.cs (3)
594else if (property.IsUnknown) 1364if (property is not null && !property.IsUnknown && declaringType is not null) 1693if (parentProperty is not null && !parentProperty.IsUnknown)
System\Xaml\Parser\XamlAttribute.cs (1)
52if (Property.IsUnknown)
System\Xaml\Parser\XamlPullParser.cs (1)
1133if (_context.CurrentMember is not null && _context.CurrentMember.IsUnknown)
System\Xaml\Parser\XamlScanner.cs (1)
787Debug.Assert(prop.IsUnknown);
System\Xaml\Schema\XamlDirective.cs (1)
160return base.IsUnknown;
System\Xaml\XamlMember.cs (2)
1082xamlMember1.IsUnknown == xamlMember2.IsUnknown;
System\Xaml\XamlType.cs (1)
734!contentWrapper.ContentProperty.IsUnknown)
System\Xaml\XamlXmlWriter.cs (1)
353containingXamlType = (enumerator.Current.Member is null) || enumerator.Current.Member.IsUnknown ? null : enumerator.Current.Member.Type;
System.Xaml.Tests (4)
System\Xaml\XamlDirectiveTests.cs (2)
36Assert.False(directive.IsUnknown); 70Assert.True(directive.IsUnknown);
System\Xaml\XamlMemberTests.cs (2)
1088Assert.Equal(expectedGet, member.IsUnknown); 1095Assert.True(directive.IsUnknown);