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

SetCommandLineArgsAsync() public method

Sets command line arguments of the application.
public SetCommandLineArgsAsync ( string val ) : System.Threading.Tasks.Task
val string
return System.Threading.Tasks.Task
        public async Task SetCommandLineArgsAsync(string val) {
            var runProps = await GetConfigurationRunPropertiesAsync();
            await runProps.CommandLineArgs.SetValueAsync(val);
        }