All pages
Powered by GitBook
1 of 8

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Type

Property in Destination

Summary

Gets the Destination's type - whether the destination is a block, or a node.

public DestinationType Type { get; set; }

Condition

Property in Destination

Summary

The condition that causes this destination to be reached.

public Condition Condition { get; set; }

Node

Enumeration Member in DestinationType

Summary

Node

Block

Property in

Summary

The block that this destination refers to.

NodeName

Property in

Summary

The name of the node that this destination refers to.

Block

Enumeration Member in

Summary

DestinationType

Enum in

Inherits from System.Enum

Summary

The type of a Destination.

Remarks

This value is only valid when Type is Block .

public BasicBlock Block { get; set; }
Destination
Remarks

This value is only valid when Type is Node .

public string NodeName { get; set; }
Destination
Block
DestinationType
Members
Name
Description

public enum DestinationType
{
    Node,
    Block
}
Destination

Destination

Struct in BasicBlock

Inherits from System.ValueType

Summary

A destination represents a BasicBlock or node that may be run, following the execution of a BasicBlock .

Remarks

Destination objects represent links between blocks, or between blocks and nodes.

Enums

Name
Description

Properties

Name
Description
public struct Destination

DestinationType

The type of a Destination.

Block

The block that this destination refers to.

Condition

The condition that causes this destination to be reached.

NodeName

The name of the node that this destination refers to.

Type

Gets the Destination's type - whether the destination is a block, or a node.

Block
Node