15 references to AllocateByteArray
dotnet-svcutil-lib (15)
FrameworkFork\System.ServiceModel\Internals\System\Runtime\InternalBufferManager.cs (3)
262returnValue = Fx.AllocateByteArray(bufferPool.BufferSize); 272returnValue = Fx.AllocateByteArray(bufferSize); 532return Fx.AllocateByteArray(bufferSize);
FrameworkFork\System.ServiceModel\System\IdentityModel\SecurityUtils.cs (1)
85byte[] copy = Fx.AllocateByteArray(len);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\BufferedConnection.cs (1)
202_writeBuffer = Fx.AllocateByteArray(_writeBufferSize);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Connection.cs (2)
140_preReadData = Fx.AllocateByteArray(initialSize + _preReadCount); 478_asyncReadBuffer = Fx.AllocateByteArray(_innerStream.Connection.AsyncReadBufferSize);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ConnectionBufferPool.cs (1)
52return Fx.AllocateByteArray(_bufferSize);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\FramingChannels.cs (2)
208byte[] startBytes = Fx.AllocateByteArray(startSize); 494byte[] faultBuffer = Fx.AllocateByteArray(FaultStringDecoder.FaultSizeQuota);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\FramingDecoders.cs (1)
136_encodedBytes = Fx.AllocateByteArray(_encodedSize);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\FramingEncoders.cs (1)
58_encodedBytes = Fx.AllocateByteArray(checked(1 + sizeByteCount + valueByteCount));
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\HttpChannelHelpers.cs (1)
167byte[] responseBuffer = Fx.AllocateByteArray(checked((int)bufferSize));
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SessionConnectionReader.cs (1)
199_buffer = Fx.AllocateByteArray(_connection.AsyncReadBufferSize);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\SecurityUtils.cs (1)
852byte[] copy = Fx.AllocateByteArray(buffer.Length);