Class SendingDataEventArgs
Namespace: EasyCommunication.Events.Host.EventArgs
Assembly: EasyCommunication.dll
Syntax
public class SendingDataEventArgs : IHostEventArgs
Properties
Allow
Whether or not the data transmittion shall be allowed
Declaration
public bool Allow { get; set; }
Property Value
Type
Description
System.Boolean
Data
The data that is about to be sent
Declaration
public object Data { get; }
Property Value
Type
Description
System.Object
IsHeartbeat
Whether or not the data is a Heartbeat
Declaration
public bool IsHeartbeat { get; }
Property Value
Type
Description
System.Boolean
IsSerializable
Whether or not the transmitted data is a serialized object
Declaration
public bool IsSerializable { get; }
Property Value
Type
Description
System.Boolean
Receiver
The Receiver's TcpClient connection
Declaration
public TcpClient Receiver { get; }
Property Value
Type
Description
System.Net.Sockets.TcpClient
Implements
Last updated
Was this helpful?