11 references to IsWhitespaceSignificantCollection
PresentationFramework (1)
System\Windows\Markup\Baml2006\Baml2006Reader.cs (1)
1055if (!_context.CurrentFrame.XamlType.IsWhitespaceSignificantCollection)
System.Xaml (9)
System\Xaml\Parser\XamlPullParser.cs (4)
1141if (collectionType.IsWhitespaceSignificantCollection) 1160if (prop is not null && prop.Type is not null && prop.Type.IsWhitespaceSignificantCollection) 1165if (prop is null && _context.CurrentType.IsWhitespaceSignificantCollection) 1197if (prop.Type.IsWhitespaceSignificantCollection)
System\Xaml\XamlObjectReader.cs (1)
806if(xamlType.IsWhitespaceSignificantCollection)
System\Xaml\XamlType.cs (1)
965return BaseType.IsWhitespaceSignificantCollection;
System\Xaml\XamlXmlWriter.cs (3)
1037if ((property == XamlLanguage.Items && parentType is not null && parentType.IsWhitespaceSignificantCollection) || 1142if ((property == XamlLanguage.Items && parentType is not null && parentType.IsWhitespaceSignificantCollection) || 1280if (containingXamlType is not null && !containingXamlType.IsWhitespaceSignificantCollection)
System.Xaml.Tests (1)
System\Xaml\XamlTypeTests.cs (1)
2942Assert.Equal(expectedIs, type.IsWhitespaceSignificantCollection);