|   | ServerBaseSendTo(Guid, Byte) Method | 
        
        
            Sends data to the specified client synchronously.
            
        
        Namespace: GSF.CommunicationAssembly: GSF.Communication (in GSF.Communication.dll) Version: 2.4.257-beta
 Syntax
Syntaxpublic virtual void SendTo(
	Guid clientID,
	byte[] data
)
Public Overridable Sub SendTo ( 
	clientID As Guid,
	data As Byte()
)
abstract SendTo : 
        clientID : Guid * 
        data : byte[] -> unit 
override SendTo : 
        clientID : Guid * 
        data : byte[] -> unit function SendTo(clientID, data);
Parameters
- clientID  Guid
- ID of the client to which the data is to be sent.
- data  Byte
- The binary data that is to be sent.
 See Also
See Also