namespace PepperDash.Core.Net.Interfaces { /// /// This delegate defines handler for IBasicCommunication status changes /// /// Device firing the status change /// public delegate void GenericCommMethodStatusHandler(IBasicCommunication comm, eGenericCommMethodStatusChangeType status); /// /// Represents a device that uses basic connection /// public interface IBasicCommunication : ICommunicationReceiver { /// /// Send text to the device /// /// void SendText(string text); /// /// Send bytes to the device /// /// void SendBytes(byte[] bytes); } }