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

SettingsPageControl() public method

public SettingsPageControl ( IProjectConfigurationSettingsProvider settingsProvider, IApplicationShell appShell, IFileSystem fs ) : System
settingsProvider IProjectConfigurationSettingsProvider
appShell IApplicationShell
fs IFileSystem
return System
        public SettingsPageControl(IProjectConfigurationSettingsProvider settingsProvider, IApplicationShell appShell, IFileSystem fs) {
            Check.ArgumentNull(nameof(settingsProvider), settingsProvider);
            Check.ArgumentNull(nameof(appShell), appShell);
            Check.ArgumentNull(nameof(fs), fs);

            _settingsProvider = settingsProvider;
            _appShell = appShell;
            _fs = fs;
            InitializeComponent();
        }

Same methods

SettingsPageControl::SettingsPageControl ( ) : System