Write() публичный метод

public Write ( TextWriter writer ) : void
writer System.IO.TextWriter
Результат void
Пример #1
0
        public static int Run()
        {
            var stream = TryConnect(TimeSpan.FromSeconds(1));
            if (stream == null)
            {
                Elevate();
                stream = TryConnect(TimeSpan.FromSeconds(30));
                if (stream == null)
                {
                    Console.WriteLine("[[ Unable to contact sudo server! ]]");
                    return -7;
                }
            }

            using (stream)
            {
                var writer = new StreamWriter(stream);
                var reader = new StreamReader(stream);

                var programName = Environment.GetCommandLineArgs()[0];
                var commandLine = Environment.CommandLine;
                var index = commandLine.IndexOf(programName) + programName.Length;
                if (commandLine[index] == '"') { index++; } // Slight chance
                commandLine = commandLine.Substring(index);

                var request = new ExecuteRequest()
                {
                    ClientPid = Process.GetCurrentProcess().Id,
                    CommandLine = commandLine,
                    WorkingDirectory = Environment.CurrentDirectory
                };

                foreach(DictionaryEntry kvp in Environment.GetEnvironmentVariables())
                {
                    request.Environment.Add((string)kvp.Key, (string)kvp.Value);
                }

                request.Write(writer);
                writer.Flush();
                stream.Flush();

                var response = Int32.Parse(reader.ReadLine());
                var message = reader.ReadLine();

                if (message != "OK") { Console.WriteLine("Internal Error: {0}", message); }
                return response;
            }
        }