CommandOutputType Enumeration

Defines the source of the output.


Namespace: Microsoft.Hpc.Scheduler
Assembly: Microsoft.Hpc.Scheduler (in Microsoft.Hpc.Scheduler.dll)

'Usage
Dim instance As CommandOutputType

[ComVisibleAttribute(true)] 
public enum CommandOutputType
/** @attribute ComVisibleAttribute(true) */ 
public enum CommandOutputType
ComVisibleAttribute(true) 
public enum CommandOutputType

Member nameDescription
EofThere is no more output to receive. This enumeration member represents a value of 2.
ErrorThe output is an error message string that was generated when the job that contains the command failed. This enumeration member represents a value of 1.
OutputThe output was generated by the command (captured from standard output or standard error). This enumeration member represents a value of 0.

To use this enumeration in Visual Basic Scripting Edition (VBScript), you need to use the numeric values for the enumeration members or create constants that correspond to those members and set them equal to the numeric values. The following code example shows how to create and set constants for this enumeration in VBScript.

const output = 0
const error = 1
const eof = 2

Development Platforms

Windows XP, Windows Vista, Windows 7, Windows 8, Windows Server 2003, Windows Server 2008, Windows Server 2008 R2, Windows Server 2012

Target Platforms

Windows XP, Windows Vista, Windows 7, Windows 8, Windows Server 2003, Windows Server 2003 R2, Windows Server 2008, Windows Server 2008 R2, Windows Server 2012, with HPC Pack Client Utilities




Build Date:

2013-04-22

Community Additions

ADD
Show: