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

GetResetReplOnRunAsync() public method

Defines if REPL is to be reset before starting the application.
public GetResetReplOnRunAsync ( ) : Task
return Task
        public async Task<bool> GetResetReplOnRunAsync() {
            var runProps = await GetConfigurationRunPropertiesAsync();
            var val = await runProps.ResetReplOnRun.GetEvaluatedValueAsync();
            return ParseBooleanProperty(val, false);
        }