.NET/Link API Version 1.7 USE FRAMES

IMathLink.PutData Method 

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

[Visual Basic]
Sub PutData( _
   ByVal data As Byte() _
)
[C#]
void PutData(
   byte[] data
);

Parameters

data
The data to send.

Remarks

After calling PutNext and PutSize, 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.

Exceptions

Exception Type Condition
MathLinkException On any MathLink error.

See Also

IMathLink Interface | Wolfram.NETLink Namespace | PutNext | PutSize