2 writes to CloseInput
System.Xaml (1)
System\Xaml\InfosetObjects\XamlXmlReaderSettings.cs (1)
35CloseInput = 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)
89bool closeInput = (settings is null) ? true : settings.CloseInput; 123bool closeInput = (settings is not null) && settings.CloseInput; 157bool closeInput = (settings is not null) && settings.CloseInput;
System\Xaml\InfosetObjects\XamlXmlReaderSettings.cs (1)
35CloseInput = settings.CloseInput;
System.Xaml.Tests (3)
System\Xaml\XamlXmlReaderSettingsTests.cs (3)
25Assert.False(settings.CloseInput); 70Assert.Equal(settings?.CloseInput ?? false, newSettings.CloseInput);