Gets or sets the content of the raw emittable.

Namespace: SharpAssembler.Core.Instructions
Assembly: SharpAssembler Core (in SharpAssembler Core.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public byte[] Content { get; set; }
Visual Basic
Public Property Content As Byte()
	Get
	Set
Visual C++
public:
property array<unsigned char>^ Content {
	array<unsigned char>^ get ();
	void set (array<unsigned char>^ value);
}

Field Value

An array of bytes.

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptionvalue == null

Contracts

Get

Ensures
Contract.Result<byte[]>() != null

Set

Requires
value != null

See Also