3 implementations of ShouldProvideLineInfo
System.Xaml (3)
System\Xaml\InfosetObjects\DeferredWriter.cs (1)
305public bool ShouldProvideLineInfo
System\Xaml\InfosetObjects\XamlObjectWriter.cs (1)
1048public bool ShouldProvideLineInfo
System\Xaml\WriterDelegate.cs (1)
107public bool ShouldProvideLineInfo
12 references to ShouldProvideLineInfo
PresentationFramework (3)
System\Windows\Markup\WpfXamlLoader.cs (1)
150&& (xamlLineInfoConsumer != null && xamlLineInfoConsumer.ShouldProvideLineInfo))
System\Windows\Markup\XamlReader.cs (2)
394&& (xamlLineInfoConsumer != null && xamlLineInfoConsumer.ShouldProvideLineInfo)) 589&& (xamlLineInfoConsumer != null && xamlLineInfoConsumer.ShouldProvideLineInfo))
System.Xaml (2)
System\Xaml\XamlBackgroundReader.cs (1)
242&& (xamlLineInfoConsumer is not null && xamlLineInfoConsumer.ShouldProvideLineInfo))
System\Xaml\XamlServices.cs (1)
105&& (xamlLineInfoConsumer is not null && xamlLineInfoConsumer.ShouldProvideLineInfo))
System.Xaml.Tests (7)
System\Xaml\XamlNodeListTests.cs (3)
550Assert.True(consumer.ShouldProvideLineInfo); 561Assert.Throws<ObjectDisposedException>(() => consumer.ShouldProvideLineInfo); 582Assert.Throws<ObjectDisposedException>(() => consumer.ShouldProvideLineInfo);
System\Xaml\XamlNodeQueueTests.cs (4)
459Assert.True(consumer.ShouldProvideLineInfo); 470Assert.Throws<ObjectDisposedException>(() => consumer.ShouldProvideLineInfo); 482Assert.Throws<ObjectDisposedException>(() => consumer.ShouldProvideLineInfo); 494Assert.Throws<ObjectDisposedException>(() => consumer.ShouldProvideLineInfo);