C# Class NetworkPackets.DataPacket

Provides an abstraction to sue a generic packet idea, that is you can use the ICPacket portion to make a large packet and just copy the final object to a byte array in the end rather then at each stage. When Packet is accessed and is undefined, it will perform the copy automatically for you from ICPacket to Packet.
Mostrar archivo Open project: pstjuste/brunet

Protected Properties

Property Type Description
_icpacket ICopyable
_packet MemBlock

Property Details

_icpacket protected_oe property

The packet in ICopyable format.
protected ICopyable _icpacket
return ICopyable

_packet protected_oe property

The packet in MemBlock format
protected MemBlock _packet
return MemBlock