IMathLinkPutData Method

Used for sending elements in so-called "textual" form.

Definition

Namespace: Wolfram.NETLink
Assembly: Wolfram.NETLink (in Wolfram.NETLink.dll) Version: 2.0.0.0
C#
void PutData(
	byte[] data
)

Parameters

data  Byte
The data to send.

Remarks

After calling PutNext(ExpressionType) and PutSize(Int32), a series of PutData calls are used to send the actual data.

The textual means of sending data is rarely used. Its main use is to allow a number to be sent that is larger than can fit in any native .NET numeric type. See the example for PutNext(ExpressionType).

Exceptions

MathLinkExceptionOn any MathLink error.

See Also