17 references to IsUnknown
PresentationFramework (1)
System\Windows\TemplateContent.cs (1)
1046return (member.IsUnknown && member.IsDirective && member.Name == "Freeze");
System.Xaml (12)
System\Xaml\InfosetObjects\DeferredWriter.cs (1)
149Debug.Assert(!property.IsDirective && !property.IsUnknown);
System\Xaml\InfosetObjects\XamlObjectWriter.cs (3)
595else if (property.IsUnknown) 1365if (property is not null && !property.IsUnknown && declaringType is not null) 1694if (parentProperty is not null && parentProperty.IsUnknown == false)
System\Xaml\Parser\XamlAttribute.cs (1)
53if (Property.IsUnknown)
System\Xaml\Parser\XamlPullParser.cs (1)
1134if (_context.CurrentMember is not null && _context.CurrentMember.IsUnknown)
System\Xaml\Parser\XamlScanner.cs (1)
788Debug.Assert(prop.IsUnknown);
System\Xaml\Schema\XamlDirective.cs (1)
161return base.IsUnknown;
System\Xaml\XamlMember.cs (2)
1082xamlMember1.IsUnknown == xamlMember2.IsUnknown;
System\Xaml\XamlType.cs (1)
735!contentWrapper.ContentProperty.IsUnknown)
System\Xaml\XamlXmlWriter.cs (1)
355containingXamlType = (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);