I have an IResourceProvider in my code so I can use it internally. The reason I have chosen this way is because first it is needful to chunkify my data and do a CRC check before I send them.
I dont know how to proceed, I have initialized a UDP Socket successfully and feeding it to my process (so far so good)
but then what I have to do in order to consume it?
Do or Using and when I do so, why I am getting an error for the binding address and port?
this is where I am so far:
Socket.Using(x => x.Send(chunk.ToArray(), dataBytesForThisChunk, SocketFlags.Multicast));