IKernelLinkMessage Method
Prints the specified message in the user's Wolfram Language session.
Namespace: Wolfram.NETLinkAssembly: Wolfram.NETLink (in Wolfram.NETLink.dll) Version: 2.0.0.0
void Message(
string symtag,
params string[] args
)
Sub Message (
symtag As String,
ParamArray args As String()
)
void Message(
String^ symtag,
... array<String^>^ args
)
abstract Message :
symtag : string *
args : string[] -> unit
Parameters
- symtag String
- The message designation, in the usual Symbol::tag style, like the Wolfram Language Message function.
- args String
- The arguments to the Message.
This method is usable only in .NET code that is invoked in a call from the Wolfram Language, as described in Part 1
of the .NET/Link User Guide. In other words, it is only used in code that is called from a Wolfram Language
session via the "installable .NET" mechanism. Programmers who are launching the kernel and controlling it
from a .NET program will have no use for this method.
The IKernelLink object on which this method will be called will probably be obtained via the
StdLink.Link property.