A message has been received from a View UI instance

Namespace:  JHSoftware.SimpleDNS.Plugin
Assembly:  sdnsplugin (in sdnsplugin)
Version: 5.0.110.0 (5.0.110.0)

Syntax

C#
void MsgFromViewUI(
	int connID,
	byte[] msg
)
Visual Basic (Declaration)
Sub MsgFromViewUI ( _
	connID As Integer, _
	msg As Byte() _
)
Visual C++
void MsgFromViewUI(
	int connID, 
	array<unsigned char>^ msg
)

Parameters

connID
Type: System..::.Int32
The connection ID of the View UI sending the message. This ID can be used for sending a message back to the same ViewUI throught the MsgToViewUI event.
msg
Type: array<System..::.Byte>[]()[]
The message data received (format/content defined by plug-in)

Remarks

This method is called by the ViewUI.SendMsgToService (via Simple DNS Plus infrastructure). Several View UIs may be connected at the same time, for example if the server computer has multiple terminal server sessions open.

See Also