Method | Description | |
---|---|---|
CallWithTimeout ( this action, int timeoutMilliseconds ) : void |
Calls the action with a timeout.
|
|
StartProcess ( this processStartInfo, DataReceivedEventHandler outputDataRecieved ) : int |
Starts the process, and reads all output from the process
|
|
ToFullStackTrace ( this ex ) : string |
Gets the full stack trace, including inner exceptions.
|
|
ToFullStackTrace ( this ex, int count ) : string |
Gets the full stack trace, including inner exceptions up to a specified level
|
|
ToMessageStack ( this ex ) : string |
Gets all messages (including inner exceptions) from the exception
|
public static CallWithTimeout ( this action, int timeoutMilliseconds ) : void | ||
action | this | The action. |
timeoutMilliseconds | int | The timeout milliseconds. |
return | void |
public static StartProcess ( this processStartInfo, DataReceivedEventHandler outputDataRecieved ) : int | ||
processStartInfo | this | The process start info. |
outputDataRecieved | DataReceivedEventHandler | The output data recieved. |
return | int |
public static ToFullStackTrace ( this ex ) : string | ||
ex | this | The ex. |
return | string |
public static ToFullStackTrace ( this ex, int count ) : string | ||
ex | this | The ex. |
count | int | The count. |
return | string |
public static ToMessageStack ( this ex ) : string | ||
ex | this | The ex. |
return | string |