Method | Description | |
---|---|---|
BeginInvoke ( Queue |
Starts the pipeline script async.
|
|
Close ( ) : void |
Closes the pipeline and the runspace.
|
|
EndInvoke ( ) : PSDataCollection |
Waits for the pipeline to finish and returns its output.
|
|
InvokeBegin ( string begin, string script ) : Collection |
Invokes the begin script, if any, sets the pipeline script once, returns the begin output.
|
|
InvokeEnd ( string script ) : Collection |
Invokes the end script and returns its output.
|
|
InvokeFinally ( string script ) : void |
Invokes the final script, its output is ignored.
|
|
Job ( System.Management.Automation.Runspaces.Runspace runspace ) : System |
New job with its runspace. The runspace gets opened.
|
public BeginInvoke ( Queue |
||
queue | Queue |
|
count | int | |
return | void |
public InvokeBegin ( string begin, string script ) : Collection |
||
begin | string | |
script | string | |
return | Collection |
public InvokeEnd ( string script ) : Collection |
||
script | string | |
return | Collection |
public InvokeFinally ( string script ) : void | ||
script | string | |
return | void |
public Job ( System.Management.Automation.Runspaces.Runspace runspace ) : System | ||
runspace | System.Management.Automation.Runspaces.Runspace | |
return | System |