-
Notifications
You must be signed in to change notification settings - Fork 0
b99e65d1 6684 887f 7d46 21cd6cb5360a
Axel Kesseler edited this page Mar 1, 2023
·
1 revision
Splits provided payload into pure chunks.
Namespace: Plexdata.LogWriter.Internals.Helpers
Assembly: Plexdata.LogWriter.Network (in Plexdata.LogWriter.Network.dll) Version: 1.0.7.1
C#
private IEnumerable<byte[]> GetPureChunks(
byte[] payload,
int maximum
)
- payload
- Type: System.Byte[]
The payload to split into chunks. - maximum
- Type: System.Int32
The maximum chunk size.
Type: IEnumerable(Byte[])
A list of payload chunks.
This method splits provided payload into pure chunks, which means into chunks without any additional information to be able to reassemble them.
UdpChunkHelper Class
Plexdata.LogWriter.Internals.Helpers Namespace