using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LibrarySDR.Enums { public enum DeliveredStatus { AcknowledgedByDestination = 0x00, ConsumedByDestination = 0x02, MessageStored = 0x21, SourceIsNotAuthorizedForSDS = 0x43, DestinationIsNotAuthorizedForSDS = 0x44, UnknownDestinationAddress = 0x45, DeliveryFailed = 0x4A, DestinationNotRegisteredOnSystem = 0x4B, DestinationQueueFull = 0x4C, MessageTooLong = 0x4D, DestinationHostPCNotConnected = 0x4F, ValidPeriodExpiredNotReceived = 0x48, ValidPeriodExpiredNotConsumed = 0x49, ProtocolNotSupported = 0x50, DataCodingSchemeNotSupported = 0x51, DestinationNotReachable = 0x5A } }