mnscript
StringResult Net.SendToAddress(string)
Description ​
Sends the active Network Transfer Message (NTM)
Arguments ​
string
- The IP address to send the message to
Returns ​
StringResult
- StringResult representing the success or failure of this operation
Example ​
msc
using Net;
using System;
// Starts a network message with the protocol 6000 and sends it to an IP address.
number myProtocol = 6000;
Net.Start(myProtocol);
Net.SendToAddress("192.168.1.254");