Gets or sets the group 2 prefix used.

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

Syntax

C#
public EncodedInstruction..::..PrefixSegmentBranch Prefix2 { get; set; }
Visual Basic
Public Property Prefix2 As EncodedInstruction..::..PrefixSegmentBranch
	Get
	Set
Visual C++
public:
property EncodedInstruction..::..PrefixSegmentBranch Prefix2 {
	EncodedInstruction..::..PrefixSegmentBranch get ();
	void set (EncodedInstruction..::..PrefixSegmentBranch value);
}

Field Value

A member of the EncodedInstruction..::..PrefixSegmentBranch enumeration; or None to specify no prefix. The default is None.

Exceptions

ExceptionCondition
System.ComponentModel..::..InvalidEnumArgumentException!(Enum.IsDefined(typeof(PrefixSegmentBranch), value))

Contracts

Get

Ensures
Enum.IsDefined(typeof(PrefixSegmentBranch), Contract.Result<PrefixSegmentBranch>())

Set

Requires
Enum.IsDefined(typeof(PrefixSegmentBranch), value)

See Also