Microsoft.VisualStudio.R.Package.ProjectProperties.SetResetReplOnRunAsync C# (CSharp) Method

SetResetReplOnRunAsync() public method

Defines if REPL is to be reset before starting the application.
public SetResetReplOnRunAsync ( bool val ) : System.Threading.Tasks.Task
val bool
return System.Threading.Tasks.Task
        public async Task SetResetReplOnRunAsync(bool val) {
            var runProps = await GetConfigurationRunPropertiesAsync();
            await runProps.ResetReplOnRun.SetValueAsync(val);
        }