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