FlowControl 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.
Describes how an instruction alters the flow of control.
This API supports the product infrastructure and is not intended to be used directly from your code.
public enum class FlowControl
public enum FlowControl
[System.Serializable]
public enum FlowControl
[System.Serializable]
[System.Runtime.InteropServices.ComVisible(true)]
public enum FlowControl
type FlowControl =
[<System.Serializable>]
type FlowControl =
[<System.Serializable>]
[<System.Runtime.InteropServices.ComVisible(true)>]
type FlowControl =
Public Enum FlowControl
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
Branch | 0 | Branch instruction. |
Break | 1 | Break instruction. |
Call | 2 | Call instruction. |
Cond_Branch | 3 | Conditional branch instruction. |
Meta | 4 | Provides information about a subsequent instruction. For example, the |
Next | 5 | Normal flow of control. |
Phi | 6 | This enumerator value is reserved and should not be used. |
Return | 7 | Return instruction. |
Throw | 8 | Exception throw instruction. |