13 references to IsUnknown
PresentationFramework (1)
System\Windows\TemplateContent.cs (1)
1053return (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)
587else if (property.IsUnknown) 1338if (property != null && !property.IsUnknown && declaringType != null) 1663if (parentProperty != null && parentProperty.IsUnknown == false)
System\Xaml\Parser\XamlAttribute.cs (1)
55if (Property.IsUnknown)
System\Xaml\Parser\XamlPullParser.cs (1)
1083if (_context.CurrentMember != null && _context.CurrentMember.IsUnknown)
System\Xaml\Parser\XamlScanner.cs (1)
773Debug.Assert(prop.IsUnknown);
System\Xaml\Schema\XamlDirective.cs (1)
161return base.IsUnknown;
System\Xaml\XamlMember.cs (2)
1027xamlMember1.IsUnknown == xamlMember2.IsUnknown;
System\Xaml\XamlType.cs (1)
693!contentWrapper.ContentProperty.IsUnknown)
System\Xaml\XamlXmlWriter.cs (1)
351containingXamlType = (enumerator.Current.Member == null) || enumerator.Current.Member.IsUnknown ? null : enumerator.Current.Member.Type;