System.Net.ScatterGatherBuffers.ScatterGatherBuffers C# (CSharp) Method

ScatterGatherBuffers() private method

private ScatterGatherBuffers ( long totalSize ) : System
totalSize long
return System
        internal ScatterGatherBuffers(long totalSize)
        {
            // We know up front how much data is to be written.
            if (totalSize > 0)
            {
                currentChunk = AllocateMemoryChunk(totalSize > Int32.MaxValue ? Int32.MaxValue : (int) totalSize);
            }
        }

Same methods

ScatterGatherBuffers::ScatterGatherBuffers ( ) : System