| PowerShellProcessResults Delegate |
Processes the results of a script invocation.
Namespace:
Galactic.PowerShell
Assembly:
Galactic.PowerShell (in Galactic.PowerShell.dll) Version: 1.3.0.499 (1.3.0.499)
Syntax public delegate void ProcessResults(
PSDataCollection<PSObject> results,
Dictionary<string, Object> stateValues
)
Public Delegate Sub ProcessResults (
results As PSDataCollection(Of PSObject),
stateValues As Dictionary(Of String, Object)
)
public delegate void ProcessResults(
PSDataCollection<PSObject^>^ results,
Dictionary<String^, Object^>^ stateValues
)
type ProcessResults =
delegate of
results : PSDataCollection<PSObject> *
stateValues : Dictionary<string, Object> -> unit
Parameters
- results
- Type: PSDataCollectionPSObject
A collection of the results returned from the script's execution. - stateValues
- Type: System.Collections.GenericDictionaryString, Object
A collection of named state values that should are passed through the script invocation.
See Also