Sending part of byte array over the network using WCF
        Posted  
        
            by nikola
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by nikola
        
        
        
        Published on 2009-10-13T07:52:12Z
        Indexed on 
            2010/03/14
            2:05 UTC
        
        
        Read the original article
        Hit count: 397
        
I have a byte array of some binary data that i need to send over the network using WCF and NetTcpBinding. My problem is that i need to send only the part of the array. Is there any way to do this, other than copying that part to a separate array, and sending that one. This extra copying degrades performance, and i would like to avoid it, if possible.
© Stack Overflow or respective owner