15 references to AllocateByteArray
dotnet-svcutil-lib (15)
FrameworkFork\System.ServiceModel\Internals\System\Runtime\InternalBufferManager.cs (3)
262
returnValue = Fx.
AllocateByteArray
(bufferPool.BufferSize);
272
returnValue = Fx.
AllocateByteArray
(bufferSize);
532
return Fx.
AllocateByteArray
(bufferSize);
FrameworkFork\System.ServiceModel\System\IdentityModel\SecurityUtils.cs (1)
85
byte[] 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)
52
return Fx.
AllocateByteArray
(_bufferSize);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\FramingChannels.cs (2)
208
byte[] startBytes = Fx.
AllocateByteArray
(startSize);
494
byte[] 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)
167
byte[] 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)
852
byte[] copy = Fx.
AllocateByteArray
(buffer.Length);