This documentation is archived and is not being maintained.
FlowControl Enumeration
.NET Framework 1.1
Describes how an instruction alters the flow of control.
[Visual Basic] <Serializable> Public Enum FlowControl [C#] [Serializable] public enum FlowControl [C++] [Serializable] __value public enum FlowControl [JScript] public Serializable enum FlowControl
Members
| Member name | Description |
|---|---|
| Branch | Branch instruction. |
| Break | Break instruction. |
| Call | Call instruction. |
| Cond_Branch | Conditional branch instruction. |
| Meta | Provides information about a subsequent instruction. For example, the Unaligned instruction of Reflection.Emit.Opcodes has FlowControl.Meta and specifies that the subsequent pointer instruction might be unaligned. |
| Next | Normal flow of control. |
| Phi | This member supports the .NET Framework infrastructure and is not intended to be used directly from your code. |
| Return | Return instruction. |
| Throw | Exception throw instruction. |
Requirements
Namespace: System.Reflection.Emit
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
Assembly: Mscorlib (in Mscorlib.dll)
See Also
Show: