2 writes to CloseInput
System.Xaml (1)
System\Xaml\InfosetObjects\XamlXmlReaderSettings.cs (1)
34CloseInput = settings.CloseInput;
System.Xaml.Tests (1)
System\Xaml\XamlXmlReaderSettingsTests.cs (1)
44CloseInput = true
7 references to CloseInput
System.Xaml (4)
System\Xaml\InfosetObjects\XamlXmlReader.cs (3)
88bool closeInput = (settings is null) ? true : settings.CloseInput; 122bool closeInput = (settings is not null) && settings.CloseInput; 156bool closeInput = (settings is not null) && settings.CloseInput;
System\Xaml\InfosetObjects\XamlXmlReaderSettings.cs (1)
34CloseInput = settings.CloseInput;
System.Xaml.Tests (3)
System\Xaml\XamlXmlReaderSettingsTests.cs (3)
25Assert.False(settings.CloseInput); 70Assert.Equal(settings?.CloseInput ?? false, newSettings.CloseInput);