Jak mogę zwrócić obiekt lub wiele wartości z PowerShell do wykonania kodu C #
Niektóre kody C # wykonują skrypt powershell z argumentami. Chcę uzyskać kod powrotu i ciąg znaków z Powershell, aby wiedzieć, czy wszystko było w porządku w skrypcie Powershell.
Jak to zrobić - w Powershell i C #
Powershell<code># Powershell script # --- Do stuff here --- # Return an int and a string - how? # In c# I would do something like this, if this was a method: # class ReturnInfo # { # public int ReturnCode; # public string ReturnText; # } # return new ReturnInfo(){ReturnCode =1, ReturnText = "whatever"}; </code>DO#
<code>void RunPowershellScript(string scriptFile, List<string> parameters) { RunspaceConfiguration runspaceConfiguration = RunspaceConfiguration.Create(); using (Runspace runspace = RunspaceFactory.CreateRunspace(runspaceConfiguration)) { runspace.Open(); RunspaceInvoke scriptInvoker = new RunspaceInvoke(runspace); Pipeline pipeline = runspace.CreatePipeline(); Command scriptCommand = new Command(scriptFile); Collection<CommandParameter> commandParameters = new Collection<CommandParameter>(); foreach (string scriptParameter in parameters) { CommandParameter commandParm = new CommandParameter(null, scriptParameter); commandParameters.Add(commandParm); scriptCommand.Parameters.Add(commandParm); } pipeline.Commands.Add(scriptCommand); Collection<PSObject> psObjects; psObjects = pipeline.Invoke(); //What to do here? //ReturnInfo returnInfo = pipeline.DoMagic(); } } class ReturnInfo { public int ReturnCode; public string ReturnText; } </code>
Udało mi się to zrobić za pomocą hacków, wykorzystując Write-Output i opierając się na konwencjach takich jak „ostatnie dwa psObjects to wartości, których szukam”, ale bardzo łatwo by się zepsuło.