| 
            
              ServerBaseSendTo(Guid, String) Method
             | 
          
        
        
            Sends data to the specified client synchronously.
            
        
        Namespace: GSF.CommunicationAssembly: GSF.Communication (in GSF.Communication.dll) Version: 2.4.258-beta
Syntaxpublic virtual void SendTo(
	Guid clientID,
	string data
)
Public Overridable Sub SendTo ( 
	clientID As Guid,
	data As String
)
public:
virtual void SendTo(
	Guid clientID, 
	String^ data
)
abstract SendTo : 
        clientID : Guid * 
        data : string -> unit 
override SendTo : 
        clientID : Guid * 
        data : string -> unit function SendTo(clientID, data);
 View SourceParameters
- clientID  Guid
 - ID of the client to which the data is to be sent.
 - data  String
 - The plain-text data that is to be sent.
 
See Also