withSIX.Play.Core.Games.Legacy.ServerQuery.GamespyMasterQuery.CreateGSProcess C# (CSharp) Method

CreateGSProcess() private method

private CreateGSProcess ( string arguments ) : Process
arguments string
return System.Diagnostics.Process
        Process CreateGSProcess(string arguments) => new Process {
            StartInfo = {
                    UseShellExecute = false,
                    CreateNoWindow = true,
                    WindowStyle = ProcessWindowStyle.Hidden,
                    RedirectStandardOutput = true,
                    FileName = _gsListPath,
                    Arguments = arguments
                }
        };
    }