Microsoft.VisualStudio.R.Package.ProjectSystem.PropertyPages.Settings.SettingsPageViewModel.SettingsPageViewModel C# (CSharp) Method

SettingsPageViewModel() public method

public SettingsPageViewModel ( IConfigurationSettingCollection settings, ICoreShell coreShell, IFileSystem fileSystem ) : System
settings IConfigurationSettingCollection
coreShell ICoreShell
fileSystem IFileSystem
return System
        public SettingsPageViewModel(IConfigurationSettingCollection settings, ICoreShell coreShell, IFileSystem fileSystem) {
            Check.ArgumentNull(nameof(settings), settings);
            Check.ArgumentNull(nameof(coreShell), coreShell);
            Check.ArgumentNull(nameof(fileSystem), fileSystem);

            _settings = settings;
            _coreShell = coreShell;
            _fileSystem = fileSystem;
        }