| 
            
              ServerBaseSendTo(Guid, Object) 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,
	Object serializableObject
)
Public Overridable Sub SendTo ( 
	clientID As Guid,
	serializableObject As Object
)
public:
virtual void SendTo(
	Guid clientID, 
	Object^ serializableObject
)
abstract SendTo : 
        clientID : Guid * 
        serializableObject : Object -> unit 
override SendTo : 
        clientID : Guid * 
        serializableObject : Object -> unit function SendTo(clientID, serializableObject);
 View SourceParameters
- clientID  Guid
 - ID of the client to which the data is to be sent.
 - serializableObject  Object
 - The serializable object that is to be sent.
 
See Also