Gets or sets the condition on which this instruction executes.

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

Syntax

C#
InstructionCondition Condition { get; }
Visual Basic
ReadOnly Property Condition As InstructionCondition
	Get
Visual C++
property InstructionCondition Condition {
	InstructionCondition get ();
}

Field Value

A member of the InstructionCondition enumeration.

Contracts

Get

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

See Also