PrependFilenames() private method

private PrependFilenames ( string prependWith ) : void
prependWith string
return void
Example #1
0
        public RunnerSettingsBuilder PrependFilenames(string prependWith)
        {
            if (_runnerSettings == null)
            {
                throw new Exception("Must start with SetOutputFolder");
            }

            if (!string.IsNullOrWhiteSpace(prependWith))
            {
                _runnerSettings.PrependFilenames(prependWith);
            }
            return(this);
        }