|
ServerBaseOnReceiveClientData Method
|
Namespace: GSF.CommunicationAssembly: GSF.Communication (in GSF.Communication.dll) Version: 2.4.205-beta
Syntax protected virtual void OnReceiveClientData(
Guid clientID,
int size
)
Protected Overridable Sub OnReceiveClientData (
clientID As Guid,
size As Integer
)
protected:
virtual void OnReceiveClientData(
Guid clientID,
int size
)
abstract OnReceiveClientData :
clientID : Guid *
size : int -> unit
override OnReceiveClientData :
clientID : Guid *
size : int -> unit
function OnReceiveClientData(clientID, size);
View SourceParameters
- clientID Guid
- ID of the client from which data is received.
- size Int32
- Number of bytes received from the client.
Remarks
This event is automatically raised by call to
OnReceiveClientDataComplete(Guid, Byte, Int32) so that inheritors
never need to worry about raising this event. This method is only included here in case any custom server
implementations need to explicitly raise this event.
See Also