Share via


ControlFlowBranchSemantics Enum

Definition

Semantics associated with a ControlFlowBranch.

public enum class ControlFlowBranchSemantics
public enum ControlFlowBranchSemantics
type ControlFlowBranchSemantics = 
Public Enum ControlFlowBranchSemantics
Inheritance
ControlFlowBranchSemantics

Fields

Error 7

Represents a ControlFlowBranch generated for error cases.

None 0

Represents a ControlFlowBranch with no associated semantics.

ProgramTermination 4

Represents a ControlFlowBranch to indicate flow transfer to the end of program execution. The destination basic block is null for this branch.

Regular 1

Represents a regular ControlFlowBranch from a source basic block to a non-null destination basic block.

Rethrow 6

Represents a ControlFlowBranch generated for an IThrowOperation with in implicit rethrown exception. The destination basic block is null for this branch.

Return 2

Represents a ControlFlowBranch to the exit block, i.e. the destination block has Exit.

StructuredExceptionHandling 3

Represents a ControlFlowBranch with special structured exception handling semantics:

  1. The source basic block is the last block of an enclosing finally or filter region.
  2. The destination basic block is null.
Throw 5

Represents a ControlFlowBranch generated for an IThrowOperation with an explicit thrown exception. The destination basic block is null for this branch.

Applies to