how do I pass a byte[] reference as the buffer in a System.Net.Sockets.Send().Recieve() - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T02:36:36Zhttp://stackoverflow.com/feeds/question/926632http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/926632/how-do-i-pass-a-byte-reference-as-the-buffer-in-a-system-net-sockets-send-rec0how do I pass a byte[] reference as the buffer in a System.Net.Sockets.Send().Recieve()divinci2009-05-29T15:34:12Z2009-05-30T01:38:48Z
<p>Hi there,</p>
<p>I have been reading about the various memory management issues that .NET Asynchronous Sockets have.</p>
<p>There are but a handful of links, but spidering this one will get you them all:
<a href="http://codebetter.com/blogs/gregyoung/archive/2007/06/18/async-sockets-and-buffer-management.aspx" rel="nofollow">http://codebetter.com/blogs/gregyoung/archive/2007/06/18/async-sockets-and-buffer-management.aspx</a></p>
<p><strong>Basically</strong><br/>
when a socket is asynchronously sending/receiving many small byte[]'s<br/>
the send/receive byte[]'s are pinned in memory<br/>
leading to fragmentation.</p>
<p>SO for the purposes of creating a buffer manager :
I have a managed buffer (byte[])</p>
<pre><code>byte[] managedBuffer = new byte[1024];
// do stuff with managedBuffer;
</code></pre>
<p>how do I send this byte[] to the socket's asynchronous .BeginSend() method by reference?</p>
<pre><code>// I don't want to pass the VALUE to the method, but a reference
// to managedBuffer;
System.Net.Sockets.Socket.BeginSend(managedBuffer...(other params));
</code></pre>
http://stackoverflow.com/questions/926632/how-do-i-pass-a-byte-reference-as-the-buffer-in-a-system-net-sockets-send-rec/926673#9266731Answer by Nik for how do I pass a byte[] reference as the buffer in a System.Net.Sockets.Send().Recieve()Nik2009-05-29T15:41:52Z2009-05-29T15:41:52Z<p>Arrays are always passed by reference, so you're already doing that. If you're using the socket asynchronously then you'll need to make sure you don't use managedBuffer while it's in progress.</p>
http://stackoverflow.com/questions/926632/how-do-i-pass-a-byte-reference-as-the-buffer-in-a-system-net-sockets-send-rec/926675#9266751Answer by tomlog for how do I pass a byte[] reference as the buffer in a System.Net.Sockets.Send().Recieve()tomlog2009-05-29T15:42:10Z2009-05-29T15:42:10Z<p>The only thing that BeginSend does with the byte data is sending it over to the opened Socket. After that the byte array would get disposed (at the end of the function, or when the class where the array is defined gets disposed) like any other byte array in .NET by the GC.</p>
http://stackoverflow.com/questions/926632/how-do-i-pass-a-byte-reference-as-the-buffer-in-a-system-net-sockets-send-rec/926678#9266781Answer by Jon B for how do I pass a byte[] reference as the buffer in a System.Net.Sockets.Send().Recieve()Jon B2009-05-29T15:42:28Z2009-05-29T15:42:28Z<p>Arrays are always passed as a reference (like passing a pointer).</p>
http://stackoverflow.com/questions/926632/how-do-i-pass-a-byte-reference-as-the-buffer-in-a-system-net-sockets-send-rec/928734#9287341Answer by jerryjvl for how do I pass a byte[] reference as the buffer in a System.Net.Sockets.Send().Recieve()jerryjvl2009-05-30T01:38:48Z2009-05-30T01:38:48Z<p>As indicated by Nik, you are already passing it by reference when you pass the <code>byte[]</code> to the method. However, there are benefits to using the <code>ArraySegment</code> method you found in the documentation; they are primarily to avoid memory fragmentation issues inherent in the pinning of the <code>byte[]</code> buffer during an async call.</p>
<p>See my answer to: <a href="http://stackoverflow.com/questions/869744/how-to-write-a-scalable-tcp-ip-based-server/908766#908766">http://stackoverflow.com/questions/869744/how-to-write-a-scalable-tcp-ip-based-server/908766#908766</a> for more details.</p>