2 writes to CloseInput
System.Xaml (1)
System\Xaml\InfosetObjects\XamlXmlReaderSettings.cs (1)
34
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)
88
bool closeInput = (settings is null) ? true : settings.
CloseInput
;
122
bool closeInput = (settings is not null) && settings.
CloseInput
;
156
bool closeInput = (settings is not null) && settings.
CloseInput
;
System\Xaml\InfosetObjects\XamlXmlReaderSettings.cs (1)
34
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
);