Gets the condition on which this instruction executes.

Namespace: SharpAssembler.x86.Instructions
Assembly: SharpAssembler x86-64 (in SharpAssembler x86-64.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public InstructionCondition Condition { get; }
Visual Basic
Public ReadOnly Property Condition As InstructionCondition
	Get
Visual C++
public:
virtual property InstructionCondition Condition {
	InstructionCondition get () sealed;
}

Field Value

A member of the InstructionCondition enumeration.

Implements

IConditionalInstruction..::..Condition

Contracts

Get

Ensures
Enum.IsDefined(typeof(InstructionCondition),
						Contract.Result<InstructionCondition>())
Inherited From: IConditionalInstruction
Contract.Result<InstructionCondition>() != InstructionCondition.None
Inherited From: IConditionalInstruction

See Also