19 references to AllocateByteArray
System.ServiceModel.NetFramingBase (8)
System\ServiceModel\Channels\BufferedConnection.cs (1)
180_writeBuffer = Fx.AllocateByteArray(_writeBufferSize);
System\ServiceModel\Channels\Connection.cs (1)
58_preReadData = Fx.AllocateByteArray(initialData.Length + _preReadData.Length);
System\ServiceModel\Channels\FramingChannels.cs (1)
176Memory<byte> startBytes = Fx.AllocateByteArray(startSize);
System\ServiceModel\Channels\FramingDecoders.cs (1)
139_encodedBytes = Fx.AllocateByteArray(_encodedSize);
System\ServiceModel\Channels\FramingEncoders.cs (1)
58EncodedBytes = Fx.AllocateByteArray(checked(1 + sizeByteCount + valueByteCount));
System\ServiceModel\Channels\SingletonConnectionReader.cs (2)
93byte[] dummy = Fx.AllocateByteArray(_transportSettings.ConnectionBufferSize); 169byte[] initialData = Fx.AllocateByteArray(size);
System\ServiceModel\Channels\StreamedFramingRequestChannel.cs (1)
56Preamble = Fx.AllocateByteArray(startSize);
System.ServiceModel.Primitives (10)
Internals\System\Runtime\InternalBufferManager.cs (3)
260returnValue = Fx.AllocateByteArray(bufferPool.BufferSize); 270returnValue = Fx.AllocateByteArray(bufferSize); 512return Fx.AllocateByteArray(bufferSize);
System\IdentityModel\Psha1DerivedKeyGenerator.cs (2)
51_seed = Fx.AllocateByteArray(checked(label.Length + seed.Length)); 61_buffer = Fx.AllocateByteArray(checked(_hmac.HashSize / 8 + _seed.Length));
System\IdentityModel\SecurityUtils.cs (1)
81byte[] copy = Fx.AllocateByteArray(len);
System\ServiceModel\Security\RequestSecurityTokenResponse.cs (1)
546byte[] result = Fx.AllocateByteArray(_authenticator.Length);
System\ServiceModel\Security\SecuritySessionSecurityTokenProvider.cs (1)
555byte[] result = Fx.AllocateByteArray(entropySize / 8);
System\ServiceModel\Security\SecurityUtils.cs (1)
814byte[] copy = Fx.AllocateByteArray(buffer.Length);
System\ServiceModel\Security\SecurityVerifiedMessage.cs (1)
509byte[] splicedBuffer = Fx.AllocateByteArray(checked(middle.Length + wrapperLength - 1));
System.ServiceModel.UnixDomainSocket (1)
System\ServiceModel\Channels\SocketConnection.cs (1)
335byte[] dummy = Fx.AllocateByteArray(1);