PipelineResultTypes Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Enum defining the types of streams coming out of a pipeline.
This enumeration supports a bitwise combination of its member values.
public enum class PipelineResultTypes
[System.Flags]
public enum PipelineResultTypes
[<System.Flags>]
type PipelineResultTypes =
Public Enum PipelineResultTypes
- Inheritance
-
PipelineResultTypes
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | Default streaming behavior. |
Output | 1 | Success output. |
Error | 2 | Error output. |
Warning | 3 | Warning information stream. |
Verbose | 4 | Verbose information stream. |
Debug | 5 | Debug information stream. |
Information | 6 | Information information stream. |
All | 7 | All streams. |
Null | 8 | Redirect to nothing. |